From ffd6476e2410744008c5da5f8cd4be656a114fe4 Mon Sep 17 00:00:00 2001 From: "Esteban \"Skallwar\" Blanc" Date: Tue, 8 Oct 2024 14:46:42 +0200 Subject: [PATCH] use command Signed-off-by: Esteban Blanc --- .github/workflows/clippy.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index e8211fa..c8e7367 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -17,9 +17,10 @@ jobs: - uses: cachix/install-nix-action@v27 - name: Enter nix - run: nix develop - - - run: cd riscv64_qemuvirt && cargo clippy --all-features --target ${{ env.TARGET }} + run: nix develop --command " + cd riscv64_qemuvirt && \ + cargo clippy --all-features --target ${{ env.TARGET }} + " clippy_aarch64: runs-on: ubuntu-latest @@ -33,4 +34,7 @@ jobs: - name: Enter nix run: nix develop - - run: cd aarch64_qemuvirt && cargo clippy --all-features --target ${{ env.TARGET }} + - run: nix develop --command " + cd aarch64_qemuvirt && \ + cargo clippy --all-features --target ${{ env.TARGET }} + "