Hardness more global roots. #40
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] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_and_test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- name: Build and test module | |
uses: savonet/build-and-test-ocaml-module@main | |
with: | |
extra-packages: ogg | |
- name: Run CI tests. | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
eval $(opam env) | |
sudo apt-get install -qq -yy ffmpeg | |
dune build @citest |