Compare commits

..

3 Commits

Author SHA1 Message Date
Matthieu Dubuget
5e50900165
setup-ocaml@v2, sans test 2021-05-24 13:56:42 +02:00
Matthieu Dubuget
abd5278719
Update blank.ml with ocaml-setup 2021-05-24 13:49:41 +02:00
Matthieu Dubuget
f88594dd12
Essai actions 2021-05-24 13:45:29 +02:00

33
.github/workflows/blank.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: CI
# Controls when the action will run.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
ocaml-compiler:
- 4.12.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only
- run: opam exec -- dune build