From 89b3445172f04e37aced2211498647c2dc4d3e61 Mon Sep 17 00:00:00 2001 From: reo101 Date: Tue, 7 Feb 2023 03:46:45 +0200 Subject: [PATCH] feat(cicd): add initial `cachix` support --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..cdce70d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: "Test" +on: + pull_request: + push: +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v18 + with: + nix_path: nixpkgs=channel:nixos-unstable + - uses: cachix/cachix-action@v11 + with: + name: rix101 + authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + - run: nix build + - run: nix flake check