Skip to content

Commit

Permalink
update CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
zapashcanon committed Jul 23, 2024
1 parent 14ea9c5 commit 74df5ab
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,32 @@
name: main

on:
pull_request:
push:
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON

jobs:
build:

strategy:
fail-fast: false
matrix:
ocaml-compiler:
- "5.1"
- "5.2"
- "4.14"
os:
- ubuntu-latest # Linux x86_64
- macos-latest # MacOS x86_64
- macos-14 # MacOS ARM64

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

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
- name: checkout-code
uses: actions/checkout@v4
- name: setup-ocaml-${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
opam-pin: false
opam-depext: false
ocaml-compiler: ${{ matrix.ocaml-compiler }}


- run: opam install . --deps-only --with-test

- run: opam exec -- dune build

- run: opam exec -- dune runtest

0 comments on commit 74df5ab

Please sign in to comment.