diff options
Diffstat (limited to '.github/workflows/check.yml')
-rw-r--r-- | .github/workflows/check.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..0a0642f --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,11 @@ +name: Nix flake check +on: push + +jobs: + check: + runs-on: self-hosted + steps: + - uses: actions/checkout@v3 + + - name: check flake + run: nix flake check -L |