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