Skip to content

Commit 976a096

Browse files
Setup GitHub action for CI.
1 parent 66a3a63 commit 976a096

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "CI"
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
push:
7+
branches:
8+
- main
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: cachix/install-nix-action@v22
15+
with:
16+
nix_path: nixpkgs=channel:nixos-unstable
17+
- run: nix flake check

0 commit comments

Comments
 (0)