From 45f3bc2c7466334230cc98b14a1167c384b15a47 Mon Sep 17 00:00:00 2001 From: John Lewis Date: Mon, 29 Jan 2024 15:32:23 -0600 Subject: [PATCH] added `nix flake check` workflow --- .github/workflows/ci.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..2399763 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,15 @@ + +name: CI + +on: + push: + pull_request: + +jobs: + check: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main + - uses: DeterminateSystems/flake-checker-action@main