Skip to content

Commit

Permalink
ci: Adds --all-features to build and test step
Browse files Browse the repository at this point in the history
  • Loading branch information
dilawar committed Jan 8, 2024
1 parent b3bebdb commit 26a3add
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- uses: actions/checkout@v3
- name: Build
run: |
cargo clippy --no-deps
cargo build --all-targets --verbose
cargo clippy --no-deps --all-features
cargo build --all-targets --all-features --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose --all-features
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2

Expand Down

0 comments on commit 26a3add

Please sign in to comment.