From 36ed40e208a7ad8e75e4b457623ce62f9b87eadb Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Tue, 2 Jul 2024 11:48:45 +0900 Subject: [PATCH] Add OCaml 5.2 to CI Signed-off-by: Sora Morimoto --- .github/workflows/workflow.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index d2ee006..ec31cb7 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -13,15 +13,15 @@ jobs: fail-fast: false matrix: os: + - macos-latest - ubuntu-latest + - windows-latest ocaml-compiler: - - "4.08" - "4.14" + - "5.2" include: - - os: macos-latest - ocaml-compiler: "4.14" - - os: windows-latest - ocaml-compiler: "4.14" + - os: ubuntu-latest + ocaml-compiler: "4.08" runs-on: ${{ matrix.os }}