Skip to content

Commit 1c7a0a4

Browse files
authored
chore: add ci action
1 parent 00d0774 commit 1c7a0a4

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: DeterminateSystems/nix-installer-action@main
14+
15+
- name: Build Release
16+
run: nix build .
17+
18+
- name: Build Docker Image
19+
run: nix build .#docker

0 commit comments

Comments
 (0)