GHA: ocaml-compiler versions as strings
Some checks failed
build / Build (push) Has been cancelled

Otherwise, there's a bug where they get interpreted as floats… (it seems the bug doesn't appear here). Using strings is safer in general.
Update from OCaml 4.12 to 4.14.
This commit is contained in:
Antonin Décimo 2025-04-02 20:28:31 +02:00 committed by Simon Cruanes
parent 4b7d9ec769
commit 27b3ca76c8

View file

@ -16,9 +16,9 @@ jobs:
# - macos-latest # build issues with `ar` (!!!)
#- windows-latest # certificate problem
ocaml-compiler:
- 4.08
- 4.12
- 5.03
- '4.08'
- '4.14'
- '5.3'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2