We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1921b8a commit f1bbb64Copy full SHA for f1bbb64
.github/workflows/nix-build.yml
@@ -0,0 +1,22 @@
1
+# See:
2
+# - https://github.com/nix-community/nix-github-actions/blob/master/.github/workflows/cachix-install-nix-action.yml
3
+# - https://github.com/DeterminateSystems/nix-github-actions/blob/main/.github/workflows/nix.yml
4
+name: Build git-monitor (Nix)
5
+
6
+on:
7
+ push:
8
+ branches: [ "main" ]
9
+ pull_request:
10
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - uses: cachix/install-nix-action@v30
20
21
+ - name: Build git-monitor
22
+ run: nix build .#git-monitor
0 commit comments