Skip to content

Commit

Permalink
adds CI with a simple build workflow (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivg authored Aug 3, 2022
1 parent 44d986b commit aea5030
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build
on:
- pull_request

jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
ocaml-version:
- 4.13.x
- 4.03.x

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

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

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

- run: opam pin add piqi .

0 comments on commit aea5030

Please sign in to comment.