this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix CI

ArthurW 91dd102d 7c66eb6c

+3 -4
+3 -4
.github/workflows/build.yml
··· 29 29 # Steps represent a sequence of tasks that will be executed as part of the job 30 30 steps: 31 31 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 32 - - uses: actions/checkout@v3 32 + - uses: actions/checkout@v4 33 33 34 34 - name: Set up OCaml ${{ matrix.ocaml-compiler }} 35 - uses: ocaml/setup-ocaml@v2 35 + uses: ocaml/setup-ocaml@v3 36 36 with: 37 37 # Version of the OCaml compiler to initialise 38 38 ocaml-compiler: ${{ matrix.ocaml-compiler }} 39 39 40 40 - name: Install dependencies 41 - run: | 42 - opam install . --deps-only --with-test 41 + run: opam install . --deps-only --with-test 43 42 44 43 - name: Build and test in release mode 45 44 run: opam install . --with-test