From b76280d8e8b5811491dd2f4d576523f04a3dd775 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Sun, 20 Oct 2024 23:04:55 +0200 Subject: [PATCH] Create nix build workflow --- .github/workflows/build_nix.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/build_nix.yml diff --git a/.github/workflows/build_nix.yml b/.github/workflows/build_nix.yml new file mode 100644 index 0000000..8d168f2 --- /dev/null +++ b/.github/workflows/build_nix.yml @@ -0,0 +1,14 @@ +name: "build nix" +on: + pull_request: + push: +jobs: + tests: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v27 + with: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + - run: nix build + - run: nix flake check