mirror of
https://github.com/qwjyh/xdbm
synced 2024-12-04 20:41:04 +09:00
Update CI and add lint (#18)
* fix: update actions/checkout from v3 to v4 * update(CI): add clippy
This commit is contained in:
parent
0abf9c0693
commit
8fc8029435
1 changed files with 6 additions and 2 deletions
8
.github/workflows/rust.yml
vendored
8
.github/workflows/rust.yml
vendored
|
@ -10,13 +10,17 @@ env:
|
|||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
build-and-lint:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup
|
||||
run: rustup component add clippy
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
- name: Lint
|
||||
run: cargo clippy --all-targets --all-features
|
||||
|
|
Loading…
Reference in a new issue