From 1158ddf423765fd5c397195e7f2f9303cea2254b Mon Sep 17 00:00:00 2001 From: Kate Date: Thu, 9 Jan 2025 00:04:16 +0000 Subject: [PATCH] GHA: upgrade to setup-ocaml@v3, add OCaml 5.1, 5.2 and 5.3, and remove 4.12 and 4.13 to the test matrix --- .github/workflows/main.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 44ab1ea..874ac30 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,15 +14,11 @@ jobs: - macos-latest - windows-latest ocaml-compiler: - - 4.12.x - - 4.13.x - - 4.14.x - - 5.00.x - exclude: - - os: windows-latest - ocaml-compiler: 5.00.x - - os: macos-latest - ocaml-compiler: 4.08.x + - "4.14" + - "5.0" + - "5.1" + - "5.2" + - "5.3" runs-on: ${{ matrix.os }} @@ -31,7 +27,7 @@ jobs: uses: actions/checkout@v3 - name: Use OCaml ${{ matrix.ocaml-compiler }} - uses: ocaml/setup-ocaml@v2 + uses: ocaml/setup-ocaml@v3 with: ocaml-compiler: ${{ matrix.ocaml-compiler }}