Skip to content

Commit 8c35155

Browse files
committed
CI maintenance
1 parent 317521b commit 8c35155

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/workflow.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ jobs:
2525
- name: Check out code
2626
uses: actions/checkout@v3
2727

28+
- name: Set up Node
29+
uses: actions/setup-node@v3
30+
2831
- name: Set up OCaml
29-
uses: ocaml/setup-ocaml@v2
32+
uses: ocaml/setup-ocaml@v3
3033
with:
3134
ocaml-compiler: ${{ matrix.ocaml-compiler }}
3235
opam-repositories: |

dune-project

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
(and
8282
(<> :arch "x86_32")
8383
(<> :arch "riscv64")
84+
(<> :os "win32")
8485
:with-test))
8586
(dscheck
8687
(and

picos.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ depends: [
2525
"ocaml-version" {>= "3.6.4" & with-test}
2626
"domain_shims" {>= "0.1.0" & with-test}
2727
"js_of_ocaml" {>= "5.4.0" & with-test}
28-
"conf-npm" {arch != "x86_32" & arch != "riscv64" & with-test}
28+
"conf-npm"
29+
{arch != "x86_32" & arch != "riscv64" & os != "win32" & with-test}
2930
"dscheck" {>= "0.4.0" & with-test}
3031
"sherlodoc" {>= "0.2" & with-doc}
3132
"odoc" {>= "2.4.1" & with-doc}

0 commit comments

Comments
 (0)