ci: add basic nix and cachix support (#15)
This commit is contained in:
parent
cc67646556
commit
53e2bc01d4
7 changed files with 86 additions and 23 deletions
.github/workflows
15
.github/workflows/nix.yml
vendored
Normal file
15
.github/workflows/nix.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: "Nix"
|
||||
on:
|
||||
push:
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: cachix/install-nix-action@v8
|
||||
- uses: cachix/cachix-action@v5
|
||||
with:
|
||||
name: nix-community
|
||||
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
||||
# Only needed for private caches
|
||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
Loading…
Add table
Add a link
Reference in a new issue