Skip to content

Commit

Permalink
Adds nix-based CI build to address Issue #45
Browse files Browse the repository at this point in the history
  • Loading branch information
kquick committed Aug 30, 2023
1 parent 40a66cc commit 6f44dac
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/nix-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Yapall nix CI
on:
- push
- pull_request

jobs:
build:
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v20
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v12
with:
name: galois
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: build and test
shell: bash
run: nix build -L .#yapall

0 comments on commit 6f44dac

Please sign in to comment.