GHA: ocaml-compiler versions as strings

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 GitHub
parent 4b7d9ec769
commit d7002aed32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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