Merge pull request #10 from fsr/gh-actions

This commit is contained in:
Tassilo Tanneberger 2022-11-25 16:49:04 +01:00 committed by GitHub
commit 489ee44a64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

33
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,33 @@
name: main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-flake:
name: Check Flake
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v18
with:
extra_nix_config: |
experimental-features = nix-command flakes
- uses: cachix/cachix-action@v12
with:
name: fruitbasket
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
extraPullNames: nix-community
- run: nix build
- run: nix flake check