这是indexloc提供的服务,不要输入任何密码
Skip to content

Support for runtime metaprogramming #414

Support for runtime metaprogramming

Support for runtime metaprogramming #414

Workflow file for this run

name: Build on other platforms
# Build and run tests on platforms others than Linux, doing less tests and
# running asynchronously from other jobs.
on:
push:
branches:
- main
- jane
pull_request:
workflow_dispatch:
jobs:
build-others:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
# Don't include windows. At time of writing, its opam repository doesn't have 5.2.
# - windows-latest
ocaml-compiler:
# Don't include every versions. OCaml-CI already covers that
- 5.2.x
runs-on: ${{ matrix.os }}
steps:
# Clone the project
- uses: actions/checkout@v2
# Setup
- name: Setup OCaml ${{ matrix.ocaml-version }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Opam dependencies
run: opam install --deps-only -t .
- name: Runtest
run: opam exec -- dune runtest