Skip to content

Commit 49f87c3

Browse files
committed
ci: build devshell for all supported systems
1 parent 16a7e8d commit 49f87c3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@ on:
88

99
jobs:
1010
build:
11-
name: Checks
11+
name: Build
1212
runs-on: ubuntu-latest
1313

14+
strategy:
15+
matrix:
16+
system: ['x86_64-linux', 'aarch64-linux']
17+
1418
steps:
1519
- uses: actions/checkout@v4
1620

@@ -27,3 +31,6 @@ jobs:
2731
run: |
2832
nix flake check --all-systems -L
2933
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

Comments
 (0)