summaryrefslogtreecommitdiff
path: root/.github/workflows/check.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/check.yml')
-rw-r--r--.github/workflows/check.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
deleted file mode 100644
index 1a9a6ea..0000000
--- a/.github/workflows/check.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: check flake
-
-on:
- pull_request:
- paths:
- - "**.nix"
- push:
- paths:
- - "**.nix"
- workflow_dispatch:
- workflow_call:
-
-jobs:
- check:
- runs-on: ubuntu-latest
- steps:
- - name: checkout repo
- uses: actions/checkout@v3
-
- - name: install nix
- uses: cachix/install-nix-action@v20
- with:
- github_access_token: ${{ secrets.GITHUB_TOKEN }}
-
- - name: run nix flake check
- run: |
- export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1
- export NIXPKGS_ALLOW_BROKEN=1
- export NIXPKGS_ALLOW_UNFREE=1
- nix flake check --impure