Adds nix-based CI build to address Issue #45 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Yapall nix CI | ||
on: | ||
- push | ||
- pull_request | ||
jobs: | ||
build: | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cachix/install-nix-action@v20 | ||
extra_nix_config: | | ||
Check failure on line 11 in .github/workflows/nix-ci.yml GitHub Actions / Yapall nix CIInvalid workflow file
|
||
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 |