Merge pull request #24 from cab404/cab404-patch-1 #80
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: "Nix CI" | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v16 | |
- uses: cachix/cachix-action@v10 | |
with: | |
name: wg-bond | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Building default package | |
run: nix build . | |
check: | |
# we'll manage to fix it sometime later | |
if: false | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v16 | |
- name: Running checks | |
run: nix flake check . |