We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69af031 commit df75137Copy full SHA for df75137
2 files changed
.github/workflows/nix-build.yml
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ strategy:
12
+ matrix:
13
+ os: [ubuntu-latest, macos-latest]
14
+ runs-on: ${{ matrix.os }}
15
+ steps:
16
+ - uses: actions/checkout@v6
17
+ with:
18
+ fetch-depth: 0
19
+ - name: Install Nix
20
+ uses: DeterminateSystems/nix-installer-action@main
21
+ - name: Run checks
22
+ run: nix flake check -Lvv --log-format bar-with-logs
0 commit comments