Skip to content

Commit

Permalink
use matrix of compiler versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pxeger committed Sep 20, 2023
1 parent a36b008 commit b4f1e91
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@ on: [push, pull_request, workflow_dispatch]
jobs:
install:
name: Install
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ocaml-compiler: ["ocaml-variants.4.02.1+modular-implicits", "ocaml-variants.4.02.1+modular-implicits-ber", "ocaml-variants.4.02.1+modular-implicits+let_syntax"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v2
if: steps.cache-dependencies.outputs.cache-hit != 'true'
with:
ocaml-compiler: ocaml-variants.4.02.1+modular-implicits-ber
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
opam-repositories: |
default: https://github.com/ocaml/opam-repository.git
Expand Down

0 comments on commit b4f1e91

Please sign in to comment.