this repo has no description

Fix CI

ArthurW f65bfe94 6ecda9f5

+4 -5
+4 -5
.github/workflows/js.yml
··· 20 20 os: 21 21 - ubuntu-latest 22 22 ocaml-compiler: 23 - - 5.0.x 23 + - 5.2.x 24 24 # The type of runner that the job will run on 25 25 runs-on: ${{ matrix.os }} 26 26 27 27 # Steps represent a sequence of tasks that will be executed as part of the job 28 28 steps: 29 29 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 30 - - uses: actions/checkout@v3 30 + - uses: actions/checkout@v4 31 31 32 32 - name: Set up OCaml ${{ matrix.ocaml-compiler }} 33 - uses: ocaml/setup-ocaml@v2 33 + uses: ocaml/setup-ocaml@v3 34 34 with: 35 35 # Version of the OCaml compiler to initialise 36 36 ocaml-compiler: ${{ matrix.ocaml-compiler }} 37 37 38 38 - name: Install dependencies 39 - run: | 40 - opam install . --deps-only --with-test 39 + run: opam install . --deps-only --with-test 41 40 42 41 - name: Build and test in release mode 43 42 run: opam exec -- make js