Skip to content

Commit

Permalink
Add clippy to rust ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jcronenberg committed Oct 18, 2023
1 parent d517c93 commit 3657717
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/migrate-wicked-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
- name: Unit tests
run: cargo test --verbose
- name: Run lint tests
- name: Lint tests
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy -p agama-migrate-wicked -- --no-deps -D warnings
- name: Cargo clippy on unit tests
run: cargo clippy -p agama-migrate-wicked -- --no-deps --cfg test -A unused_imports -D warnings

0 comments on commit 3657717

Please sign in to comment.