We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16a7e8d commit 49f87c3Copy full SHA for 49f87c3
1 file changed
.github/workflows/ci.yml
@@ -8,9 +8,13 @@ on:
8
9
jobs:
10
build:
11
- name: Checks
+ name: Build
12
runs-on: ubuntu-latest
13
14
+ strategy:
15
+ matrix:
16
+ system: ['x86_64-linux', 'aarch64-linux']
17
+
18
steps:
19
- uses: actions/checkout@v4
20
@@ -27,3 +31,6 @@ jobs:
27
31
run: |
28
32
nix flake check --all-systems -L
29
33
nix build .#sbt -L
34
35
+ - name: "Nix devshell build for ${{ matrix.system }} ❄️"
36
+ run: nix build .#devShells.${{ matrix.system }}.default.inputDerivation
0 commit comments