From df782f6a87d5876f937ae2606d789dddaf7b45b8 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Tue, 1 Oct 2024 19:54:19 +0200 Subject: [PATCH] Try to fix CI --- .github/workflows/compile-check-blink.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile-check-blink.yml b/.github/workflows/compile-check-blink.yml index 3b5a00f..1a477e8 100644 --- a/.github/workflows/compile-check-blink.yml +++ b/.github/workflows/compile-check-blink.yml @@ -8,14 +8,19 @@ on: - 'README.md' jobs: nix-flake-check: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Work around https://github.com/containers/bubblewrap/issues/632 steps: - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v29 with: github_access_token: ${{ secrets.GITHUB_TOKEN }} - uses: DeterminateSystems/magic-nix-cache-action@v8 - - run: | + + - name: Compile test + run: | nix develop --command make -C blink compile + + - name: Formatter check + run: | nix fmt git diff --exit-code