Skip to content

Commit

Permalink
ci: Add github actions to build Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
srid authored and vsaimanohar committed Nov 11, 2024
1 parent b49ea86 commit 81c5f21
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/nix.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 81c5f21

Please sign in to comment.