Skip to content

Commit

Permalink
ci: Reorder test building and running to avoid double compilation. (#650
Browse files Browse the repository at this point in the history
)
  • Loading branch information
aborgna-q authored Nov 7, 2023
1 parent d34cd5c commit 1fce927
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ jobs:
with:
prefix-key: v0-rust-${{ matrix.rust }}
- name: Build with no features
run: cargo build --verbose --no-default-features
- name: Build with all features
run: cargo build --verbose --all-features
run: cargo test --verbose --no-default-features --no-run
- name: Tests with no features
run: cargo test --verbose --no-default-features
- name: Build with all features
run: cargo test --verbose --all-features --no-run
- name: Tests with all features
run: cargo test --verbose --all-features

Expand Down

0 comments on commit 1fce927

Please sign in to comment.