From 16890d6f08c4d20ce1fc665273e5c316eb54ee80 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 20 Jun 2024 20:32:35 -0400 Subject: [PATCH] ci: Fix incorrect `with:` usage --- .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 eec4c5df..024b4180 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,11 +10,11 @@ jobs: test: name: nix flake check runs-on: ubuntu-latest - with: - extra_nix_config: "extra-platforms = aarch64-linux" steps: - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v27 + with: + extra_nix_config: "extra-platforms = aarch64-linux" - run: nix flake check format: name: nix fmt -- --check **/*.nix