From 81c5f218d4403e83cccb55a992b85d627ab578e7 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar <3998+srid@users.noreply.github.com> Date: Mon, 11 Nov 2024 09:30:33 -0500 Subject: [PATCH] ci: Add github actions to build Nix --- .github/workflows/nix.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/nix.yaml diff --git a/.github/workflows/nix.yaml b/.github/workflows/nix.yaml new file mode 100644 index 0000000..f670fc2 --- /dev/null +++ b/.github/workflows/nix.yaml @@ -0,0 +1,17 @@ +name: "CI" +on: + # Run only when pushing to main branch, and making PRs + push: + branches: + - main + pull_request: +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [x86_64-linux] + steps: + - uses: actions/checkout@v4 + - name: Build all flake outputs + run: om ci