Skip to content

Add an executable to compute and download swhid #76

Add an executable to compute and download swhid

Add an executable to compute and download swhid #76

Workflow file for this run

name: build
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
ocaml-compiler:
- 4.12.0
include:
- os: ubuntu-latest
ocaml-compiler: 4.08.0
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup-ocaml
uses: avsm/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: setup
run: |
opam pin add . -y --no-action
opam depext -y swhid
opam install -y ./*.opam --deps-only --with-test
opam upgrade --fixup
- name: build
run: opam exec -- dune build @install
- name: test
run: opam exec -- dune runtest