Skip to content

Commit

Permalink
Added clippy checks for examples to CI, removed some argmin checks
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-k committed Jan 21, 2024
1 parent c8d2c9a commit 6d09288
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,8 @@ jobs:
components: clippy
- name: Clippy (argmin-math)
run: cargo clippy -p argmin-math --all-targets --features "primitives,vec,nalgebra_latest,ndarray_latest" -- -D warnings
- name: Clippy (argmin) without default features
run: cargo clippy -p argmin --all-targets --no-default-features -- -D warnings
- name: Clippy (argmin) with default features
run: cargo clippy -p argmin --all-targets -- -D warnings
- name: Clippy (argmin) with all features
run: cargo clippy -p argmin --all-targets --all-features -- -D warnings
run: cargo clippy -p argmin --all-targets --features "_full_dev" -- -D warnings
- name: Clippy (argmin-observer-slog)
run: cargo clippy -p argmin-observer-slog --all-targets --features "serde1" -- -D warnings
- name: Clippy (argmin-observer-paramwriter)
Expand All @@ -141,6 +137,8 @@ jobs:
run: cargo clippy -p argmin-checkpointing-file --all-targets -- -D warnings
- name: Clippy (spectator)
run: cargo clippy -p spectator --all-targets -- -D warnings
- name: Clippy (examples)
run: cargo clippy -p 'example-*' --all-targets --all-features -- -D warnings

rustfmt:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6d09288

Please sign in to comment.