Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
.github/workflows: add main
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypopp committed Apr 3, 2024
1 parent f019e2a commit fe68285
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: main

on:
pull_request:
push:
schedule:
- cron: 0 1 * * MON

permissions: read-all

jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- debian-latest
ocaml-compiler:
- "4.14"
- "5.1"

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

steps:
- name: checkout tree
uses: actions/checkout@v4

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

- run: opam repo add andreypopp https://github.com/andreypopp/opam-repository.git

- run: opam update

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

- run: opam exec -- dune build

- run: opam exec -- dune runtest

0 comments on commit fe68285

Please sign in to comment.