Skip to content

Commit

Permalink
add building job for nix in github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Aug 17, 2023
1 parent a1771c4 commit 9210c04
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Build nix"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix/pin.sh
- run: nix build mina
env:
GIT_LFS_SKIP_SMUDGE: 1
- run: nix flake check

0 comments on commit 9210c04

Please sign in to comment.