We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78099d1 commit 89dd52fCopy full SHA for 89dd52f
.github/workflows/ci.yml
.github/workflows/hackage.yml
.github/workflows/nix.yaml
@@ -0,0 +1,22 @@
1
+name: Nix
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ nix-build:
8
+ name: nix build .#${{ matrix.ghc }}-strongweak
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ ghc: [ghc98, ghc910]
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ id-token: "write"
16
+ contents: "read"
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: DeterminateSystems/nix-installer-action@main
20
+ - uses: DeterminateSystems/magic-nix-cache-action@main
21
+ - uses: DeterminateSystems/flake-checker-action@main
22
+ - run: nix build .#${{ matrix.ghc }}-strongweak
.github/workflows/nix.yml
0 commit comments