Skip to content

Commit

Permalink
fix yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallagher committed Dec 15, 2023
1 parent b8be8dc commit f75c4a3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- name: Report Clippy version
run: cargo clippy -- --version
- name: Run Clippy Lints
run: cargo clippy -- -D warnings
run: cargo clippy --features derive -- -D warnings
run: cargo clippy --features nested-values -- -D warnings
run: cargo clippy --features derive,nested-values -- -D warnings
- run: cargo clippy -- -D warnings
- run: cargo clippy --features derive -- -D warnings
- run: cargo clippy --features nested-values -- -D warnings
- run: cargo clippy --features derive,nested-values -- -D warnings

build-and-test:
runs-on: ${{ matrix.os }}
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Build
run: cargo build --all-targets --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test --features derive --verbose
run: cargo test --features nested-values --verbose
run: cargo test --features derive,nested-values --verbose
- run: cargo test --verbose
- run: cargo test --features derive --verbose
- run: cargo test --features nested-values --verbose
- run: cargo test --features derive,nested-values --verbose

0 comments on commit f75c4a3

Please sign in to comment.