From 74529c21ee45c54bdf540e05f5689f62dfb01e63 Mon Sep 17 00:00:00 2001 From: Kaur Kuut Date: Mon, 9 Dec 2024 22:18:18 +0200 Subject: [PATCH] Remove `null` test. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0537ab66..da1e03fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | @@ -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