diff options
| author | Fuwn <[email protected]> | 2021-05-07 17:38:25 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-07 17:38:25 -0700 |
| commit | 30ee5d613faa31596da75a48ac85fbe016147885 (patch) | |
| tree | 8f5793a5e2a10c5a048fba38d0ec97b3bebc0a40 /.github | |
| parent | Merge pull request #2 from fuwn/renovate/pin-dependencies (diff) | |
| download | resume-md-30ee5d613faa31596da75a48ac85fbe016147885.tar.xz resume-md-30ee5d613faa31596da75a48ac85fbe016147885.zip | |
ci(actions): check nix configuration on change
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nix.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml new file mode 100644 index 0000000..4c2312d --- /dev/null +++ b/.github/workflows/nix.yml @@ -0,0 +1,15 @@ +name: "Nix ✅/ 🚫" + +on: [ push, pull_request ] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛒 + uses: actions/checkout@v2 + - name: Toolchain 🧰 + uses: cachix/[email protected] + with: + nix_path: nixpkgs=channel:nixos-20.09 + - run: nix-build |