Skip to content

Commit

Permalink
ci: run ci requiring lock file be up-to-date
Browse files Browse the repository at this point in the history
  • Loading branch information
demosdemon committed Jul 16, 2024
1 parent e11e30c commit 51d292e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@ jobs:
shared-key: ${{ matrix.os }}-${{ matrix.rust }}

- name: Run Clippy (no default features)
run: cargo clippy --workspace --all-targets --no-default-features
run: cargo clippy --locked --workspace --all-targets --no-default-features

- name: Run Clippy (default features)
run: cargo clippy --workspace --all-targets
run: cargo clippy --locked --workspace --all-targets

- name: Run Clippy (all features)
run: cargo clippy --workspace --all-targets --all-features
run: cargo clippy --locked --workspace --all-targets --all-features

- name: Run Tests (no default features)
run: cargo test --workspace --no-default-features
run: cargo test --locked --workspace --no-default-features

- name: Run Tests (default features)
run: cargo test --workspace
run: cargo test --locked --workspace

- name: Run Tests (all features)
run: cargo test --workspace --all-features
run: cargo test --locked --workspace --all-features

coverage:
name: Run tests with coverage
Expand Down

0 comments on commit 51d292e

Please sign in to comment.