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