We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 300526f commit 785d626Copy full SHA for 785d626
.github/workflows/build.yml
@@ -15,6 +15,10 @@ on:
15
type: boolean
16
default: false
17
18
+permissions:
19
+ contents: read
20
+ actions: read
21
+
22
jobs:
23
build-macos:
24
runs-on: macos-latest
@@ -24,7 +28,7 @@ jobs:
28
uses: ocaml/setup-ocaml@v2
25
29
with:
26
30
ocaml-compiler: 5.3.0
27
- dune-cache: true
31
+ dune-cache: false
32
- name: Get version
33
id: get_version
34
run: |
@@ -69,6 +73,10 @@ jobs:
69
73
else
70
74
echo "VERSION=latest" >> $GITHUB_OUTPUT
71
75
fi
76
+ - name: Initialize opam
77
+ run: |
78
+ opam init --disable-sandboxing -y
79
+ opam switch list
72
80
- name: Install OCaml dependencies
81
82
eval $(opam env)
0 commit comments