Support DDC cerise linkable format + bump compiler #102
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
# Prevent parallel CI: Stop every workflow of a branch | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.ref }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get branch name | |
shell: bash | |
run: echo "##[{name=branch};]$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | |
id: get_branch | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install OCaml | |
uses: avsm/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 4.14 | |
opam-repositories: | | |
default: https://github.com/ocaml/opam-repository.git | |
- name: Install dependencies | |
run: opam install . --deps-only -y | |
- name: Build | |
run: opam exec -- make | |
- name: Tests | |
run: opam exec -- make test |