Skip to content

Commit

Permalink
wip CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maximedenes committed Oct 27, 2023
1 parent 278ae6f commit f9cbe32
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build and test

on:
pull_request:
push:

jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
ocaml-compiler:
- "4.11.0"
- "4.14.1"

runs-on: ${{ matrix.os }}

steps:
- name: Checkout tree
uses: actions/checkout@v4
with:
submodules: true

- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}

- run: dune build

- run: dune runtest

0 comments on commit f9cbe32

Please sign in to comment.