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