Skip to content

Commit

Permalink
ci: use --all-features flag
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Feb 5, 2023
1 parent 6ed2c25 commit 6138268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
- name: Clippy
run: |
cargo clippy --release --target ${{ matrix.target }}
cargo clippy --release --features dynamic-help --target ${{ matrix.target }}
cargo clippy --release --all-features --target ${{ matrix.target }}
- name: Tests
run: |
cargo test --release --target ${{ matrix.target }}
cargo test --release --features dynamic-help --target ${{ matrix.target }}
cargo test --release --all-features --target ${{ matrix.target }}

0 comments on commit 6138268

Please sign in to comment.