summaryrefslogtreecommitdiff
path: root/.github/workflows/check.yml
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-22 02:35:15 -0400
committerseth <[email protected]>2023-05-23 11:05:28 -0400
commit630934a2631d9429b4e46c1b6ec0f6640f332384 (patch)
treed8bd14cafb0ac382625bc5dca79b84d497e9bab7 /.github/workflows/check.yml
parent2cb6cfab9553184c1e6a10303cb832fe96080d00 (diff)
!hercules-ci -> hydra
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