Create nix build workflow
This commit is contained in:
parent
0796396d16
commit
b76280d8e8
1 changed files with 14 additions and 0 deletions
14
.github/workflows/build_nix.yml
vendored
Normal file
14
.github/workflows/build_nix.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: "build nix"
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: cachix/install-nix-action@v27
|
||||
with:
|
||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- run: nix build
|
||||
- run: nix flake check
|
||||
Loading…
Add table
Add a link
Reference in a new issue