chore: limit CI build on 4.x

This commit is contained in:
Simon Cruanes 2024-05-22 10:20:24 -04:00
parent a947d255bf
commit a1bb9d02f9
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4

View file

@ -28,5 +28,8 @@ jobs:
- run: opam depext -yt linol linol-lwt
- run: opam install -t . --deps-only
- run: opam exec -- dune build
if: ${{ matrix.ocaml-compiler == '5.1.x' }}
- run: opam exec -- dune build -p linol,linol-lwt
if: ${{ matrix.ocaml-compiler == '4.14.x' }}
- run: opam exec -- dune runtest
if: ${{ matrix.os == 'ubuntu-latest'}}
if: ${{ matrix.os == 'ubuntu-latest' && matrix.ocaml-compiler == '5.1.x' }}