From 6aa64ac73b3abd91f6444c3ef7ca278899195441 Mon Sep 17 00:00:00 2001 From: Youwen Wu <38934577+youwen5@users.noreply.github.com> Date: Fri, 16 Aug 2024 14:44:21 -0700 Subject: [PATCH] ci: add cachix tests --- .github/workflows/main.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..caba877 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: "Test" +on: + pull_request: + push: +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v25 + with: + nix_path: nixpkgs=channel:nixos-unstable + - uses: cachix/cachix-action@v14 + with: + name: suntheme + authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + - run: nix build + - run: nix develop