mirror of
https://github.com/qwjyh/xdbm
synced 2024-12-05 04:51:04 +09:00
update(CI): add clippy
This commit is contained in:
parent
a7fa40f12d
commit
60b53ec4d0
1 changed files with 5 additions and 1 deletions
6
.github/workflows/rust.yml
vendored
6
.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@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