workflows: add nix-test workflow

Checks the flake
Builds and tests the package
master
John Titor 2024-05-28 13:08:45 +05:30
parent a4a4be3381
commit 1a9952d0c0
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0
1 changed files with 17 additions and 0 deletions

17
.github/workflows/nix-tests.yml vendored 100644
View File

@ -0,0 +1,17 @@
name: "Nix-Tests"
on:
pull_request:
push:
jobs:
nix-flake-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
extra_nix_config: |
experimental-features = nix-command flakes
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- run: nix flake show
- run: nix flake check --print-build-logs
- run: nix build --print-build-logs