We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c069df8 commit 626d7ebCopy full SHA for 626d7eb
.github/workflows/default.yml
@@ -15,8 +15,8 @@ jobs:
15
fail-fast: false
16
matrix:
17
os:
18
- - ubuntu-22.04
19
- - macos-14
+ - ubuntu-latest
+ - macos-latest
20
ocaml-compiler:
21
- 5.1.1
22
- 5.2.0
@@ -29,7 +29,7 @@ jobs:
29
uses: actions/checkout@v4
30
31
- name: Use OCaml ${{ matrix.ocaml-compiler }}
32
- uses: ocaml/setup-ocaml@v2
+ uses: ocaml/setup-ocaml@v3
33
with:
34
ocaml-compiler: ${{ matrix.ocaml-compiler }}
35
opam-depext: false
@@ -50,6 +50,12 @@ jobs:
50
opam exec -- dune build @runtest
51
shell: bash
52
53
+ - name: Clean & uninstall
54
+ run: |
55
+ opam exec -- dune uninstall
56
+ opam exec -- dune clean
57
+ shell: bash
58
+
59
- name: Rebuild library with UNIQUE_FIBERS
60
run: |
61
opam exec -- dune build
0 commit comments