From 8a9d16997042c06c73081ae74e672fb6059353fe Mon Sep 17 00:00:00 2001 From: Mat Jones Date: Wed, 6 Sep 2023 12:29:52 -0400 Subject: [PATCH] chore(ci): Check Nix flake in CI --- .github/workflows/check-flake.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/check-flake.yml diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml new file mode 100644 index 00000000..1884fb43 --- /dev/null +++ b/.github/workflows/check-flake.yml @@ -0,0 +1,16 @@ +name: Check Nix flake +on: + pull_request: + push: + branches: + - master + workflow_dispatch: # allow manual trigger +jobs: + check-flake: + runs-on: ubuntu-latest + steps: + - name: Check Nix flake + uses: DeterminateSystems/flake-checker-action@v2 + with: + fail-mode: true + send-statistics: false