Skip to content

Commit 06c6525

Browse files
committed
Fix workflow
1 parent e7ebc9d commit 06c6525

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.github/workflows/workflow.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,7 @@ on:
77

88
jobs:
99
build:
10-
strategy:
11-
fail-fast: false
12-
matrix:
13-
os:
14-
- ubuntu-latest
15-
ocaml-compiler:
16-
- 5.1.x
17-
18-
runs-on: ${{ matrix.os }}
10+
runs-on: ubuntu-latest
1911

2012
steps:
2113
- run: |
@@ -24,10 +16,10 @@ jobs:
2416
- name: Checkout code
2517
uses: actions/checkout@v4
2618

27-
- name: Use OCaml ${{ matrix.ocaml-compiler }}
28-
uses: ocaml/setup-ocaml@v2
19+
- name: Setup OCaml
20+
uses: ocaml/setup-ocaml@v3
2921
with:
30-
ocaml-compiler: ${{ matrix.ocaml-compiler }}
22+
ocaml-compiler: 5
3123

3224
- run: opam install . --deps-only
3325

0 commit comments

Comments
 (0)