Skip to content

Do not use the depext subcommand if it's not required #3528

Do not use the depext subcommand if it's not required

Do not use the depext subcommand if it's not required #3528

Workflow file for this run

name: Builds, tests & co
on:
pull_request:
push:
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
permissions: read-all
jobs:
hygiene:
name: Hygiene
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Set-up Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: latest
- run: corepack enable
- run: yarn install --immutable
- run: yarn format:check
if: always()
- run: yarn lint
if: always()
- run: yarn typecheck
if: always()
test:
name: Test
needs: hygiene
strategy:
fail-fast: false
matrix:
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
os:
- macos-14
- ubuntu-22.04
ocaml-compiler:
- "5.1"
allow-prerelease-opam:
- false
include:
- os: windows-2022
ocaml-compiler: "4.14"
allow-prerelease-opam: false
- os: ubuntu-22.04
ocaml-compiler: ocaml-variants.5.1.0+options,ocaml-option-flambda
allow-prerelease-opam: true
- os: windows-2022
ocaml-compiler: ocaml-variants.5.1.0+options,ocaml-option-mingw
allow-prerelease-opam: false
opam-repositories: |
windows-5.0: https://github.com/dra27/opam-repository.git#windows-5.0
sunset: https://github.com/ocaml-opam/opam-repository-mingw.git#sunset
default: https://github.com/ocaml/opam-repository.git
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Set-up Mold
if: runner.os == 'Linux'
uses: rui314/setup-mold@c9803d2102b7e020ad0ccd687c55b2ad8baf3496 # v1
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
uses: ./
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
allow-prerelease-opam: ${{ matrix.allow-prerelease-opam }}
dune-cache: ${{ matrix.os != 'windows-2022' }}
opam-repositories: ${{ matrix.opam-repositories }}
- run: opam depext --install uri
- run: opam install ocamlbuild