Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,23 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
os: [ubuntu-latest]
ocaml-compiler:
- 4.14.x
- 5.0.x
- 5.1.x
- 5.2.x
- 5.3.x
- 5.4.x
include:
- os: macos-latest
ocaml-compiler: 4.14.x
- os: macos-latest
ocaml-compiler: 5.4.x
- os: windows-latest
ocaml-compiler: 4.14.x
- os: windows-latest
ocaml-compiler: 5.4.x

runs-on: ${{ matrix.os }}

Expand All @@ -33,10 +39,6 @@ jobs:
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: ${{ matrix.os != 'macos-latest' }}
opam-repositories: |
default: https://github.com/ocaml/opam-repository.git
beta: https://github.com/ocaml/ocaml-beta-repository.git

- name: Install opam packages
run: opam install . --deps-only --yes --with-test
Expand Down
Loading