We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3d9f26 commit 313ddccCopy full SHA for 313ddcc
1 file changed
.github/workflows/build.yml
@@ -165,6 +165,10 @@ jobs:
165
mirage:
166
name: Build and test MirageOS unikernels
167
runs-on: ubuntu-latest
168
+ strategy:
169
+ fail-fast: false
170
+ matrix:
171
+ ocaml: [5.3.0, 5.4.0]
172
steps:
173
- name: Checkout code
174
uses: actions/checkout@v4
@@ -184,7 +188,7 @@ jobs:
184
188
- name: Install OCaml compiler
185
189
uses: ocaml/setup-ocaml@v3
186
190
with:
187
- ocaml-compiler: 5.3.0
191
+ ocaml-compiler: ${{ matrix.ocaml }}
192
opam-repositories: |
193
default: https://github.com/ocaml/opam-repository.git
194
# We need to pin our packages with their real version numbers, to
0 commit comments