Skip to content

Commit

Permalink
Remove null test.
Browse files Browse the repository at this point in the history
  • Loading branch information
xStrom committed Dec 9, 2024
1 parent b5c106d commit 74529c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
components: rustfmt

- name: cargo fmt
run: cargo fmt ${{ fromJson(env.EXCLUDE_PKGS)['Foobar'] }} --all --check
run: cargo fmt --all --check

- name: install ripgrep
run: |
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
save-if: ${{ github.event_name != 'merge_group' }}

- name: cargo clippy
run: cargo hack clippy --workspace ${{ fromJson(env.EXCLUDE_PKGS)['Foobar'] }} --locked --optional-deps --each-feature -- -D warnings
run: cargo hack clippy --workspace ${{ fromJson(env.EXCLUDE_PKGS)[runner.os] }} --locked --optional-deps --each-feature -- -D warnings

- name: cargo clippy (auxiliary)
run: cargo hack clippy --workspace ${{ fromJson(env.EXCLUDE_PKGS)[runner.os] }} --locked --optional-deps --each-feature --tests --benches --examples -- -D warnings
Expand Down

0 comments on commit 74529c2

Please sign in to comment.