Skip to content

[new release] uuseg (15.1.0+dune) #47

[new release] uuseg (15.1.0+dune)

[new release] uuseg (15.1.0+dune) #47

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test

Check failure on line 11 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 11, Col: 5): Required property is missing: runs-on
strategy:
matrix:
ocaml-compiler:
- 4.08.x
- 4.14.x
- 5.0.x
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 }}
- name: Clone opam-repository
run: git clone https://github.com/ocaml/opam-repository.git
working-directory: ./test
- name: Install opam dependencies
run: opam install --deps-only --with-test .
working-directory: ./test
- name: Run tests
run: opam exec -- dune test
working-directory: ./test