2024-12-28 10:37:07 -05:00
|
|
|
name: "nix build and flake check"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-12-28 10:45:49 -05:00
|
|
|
- uses: cachix/install-nix-action@v30
|
2024-12-28 10:37:07 -05:00
|
|
|
with:
|
|
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- run: nix flake check
|
2024-12-28 10:45:49 -05:00
|
|
|
- run: nix fmt
|