We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b2abf commit d00f812Copy full SHA for d00f812
.github/workflows/test.yml
@@ -18,10 +18,17 @@ jobs:
18
nix-build:
19
needs: nix-matrix
20
runs-on: ${{ matrix.os }}
21
- strategy:
22
- matrix: ${{fromJSON(needs.nix-matrix.outputs.matrix)}}
23
steps:
24
- uses: actions/checkout@v4
25
- uses: cachix/install-nix-action@v24
26
- run: nix build -L ".#${{ matrix.attr }}"
27
+ build:
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - uses: actions/checkout@v2
30
+ - run: sudo apt install nix
31
+ - run: sudo nix develop --experimental-features 'nix-command flakes'
32
+ - run: make
33
+ - run: make clean
34
+ - run: make test
0 commit comments