add basic github actions

This commit is contained in:
Simon Cruanes 2020-01-31 17:28:04 -06:00 committed by Frédéric Bour
parent d341aa2125
commit ca24d162b9
1 changed files with 21 additions and 0 deletions

21
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: build
on: [push]
jobs:
run:
name: Build
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
# operating-system: [macos-latest, ubuntu-latest, windows-latest]
ocaml-version: [ '4.05.0' ]
steps:
- uses: actions/checkout@master
- uses: avsm/setup-ocaml@master
with:
ocaml-version: ${{ matrix.ocaml-version }}
- run: opam pin -n .
- run: opam depext -yt lwd nottui nottui-lwt
- run: opam install -t . --deps-only
- run: opam exec -- dune build
- run: opam exec -- dune runtest