Push workflow #8
Workflow file for this run
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: push | |
run-name: Push workflow | |
on: [push] | |
jobs: | |
build_matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocaml_compiler: [ocaml.5.0.0, ocaml.5.1.1] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install opam scdoc | |
- run: opam init -n --bare | |
- run: make build-deps OCAML_COMPILER="${{ matrix.ocaml_compiler }}" | |
- run: source $(opam env) | |
- run: make |