From 01c9a8b6c7360bd4a2ac55d72289cea9444790b4 Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Mon, 29 Apr 2024 23:28:15 +0900 Subject: [PATCH] Update GitHub Actions workflow Signed-off-by: Sora Morimoto --- .github/dependabot.yml | 6 ++++++ .github/workflows/workflow.yml | 33 ++++++++++++++++++++------------- 2 files changed, 26 insertions(+), 13 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..ca79ca5b4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 664814be1..6a99d3b29 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -13,33 +13,40 @@ jobs: fail-fast: false matrix: os: - - macos-latest - ubuntu-latest ocaml-compiler: - - 4.08.x - - 4.09.x - - 4.10.x - - 4.11.x - - 4.12.x - - 4.13.x - - 4.14.x + - "4.08" + - "4.09" + - "4.10" + - "4.11" + - "4.12" + - "4.13" + - "4.14" + - "5.0" + - "5.1" + include: + - os: macos-latest + ocaml-compiler: "4.14" + - os: macos-latest + ocaml-compiler: "5.1" runs-on: ${{ matrix.os }} steps: - - name: Checkout code + - name: Checkout tree uses: actions/checkout@v4 - - name: Use OCaml ${{ matrix.ocaml-compiler }} + - name: Set-up OCaml ${{ matrix.ocaml-compiler }} uses: ocaml/setup-ocaml@v2 with: ocaml-compiler: ${{ matrix.ocaml-compiler }} + allow-prerelease-opam: true opam-depext: false opam-pin: false - - name: Install OpenSSL on MacOS - run: brew install openssl@3 - if: ${{ matrix.os == 'macos-latest' }} + - name: Re-install OpenSSL on macOS + if: runner.os == 'macOS' + run: brew update && brew reinstall openssl@3 - run: opam install . --deps-only