Skip to content

Commit 6e09218

Browse files
Fix workflow file syntax
1 parent cc9e096 commit 6e09218

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/workflow.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,28 @@ jobs:
2828
- false
2929
ppx:
3030
- true
31-
local-packages: *.opam
31+
local-packages:
32+
- |
33+
*.opam
3234
include:
3335
- os: ubuntu-latest
3436
ocaml-compiler: ocaml-variants.4.14.0+options,ocaml-option-flambda,ocaml-option-musl,ocaml-option-static
3537
libev: false
3638
ppx: true
37-
local-packages: *.opam
39+
local-packages: |
40+
*.opam
3841
- os: macos-latest
3942
ocaml-compiler: 4.14.x
4043
libev: true
4144
ppx: true
42-
local-packages: *.opam
45+
local-packages: |
46+
*.opam
4347
- os: windows-latest
4448
ocaml-compiler: 4.14.x
4549
libev: false
4650
ppx: true
47-
local-packages: *.opam
51+
local-packages: |
52+
*.opam
4853
- os: ubuntu-latest
4954
ocaml-compiler: 4.08.x
5055
libev: true

0 commit comments

Comments
 (0)