Skip to content

Maybe I need to use single quotes instead of double quotes? #59

Maybe I need to use single quotes instead of double quotes?

Maybe I need to use single quotes instead of double quotes? #59

Workflow file for this run

name: Builds, tests & co
on:
- push
- pull_request
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- "5.1"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- run: brew install autoconf
if: ${{ matrix.os == 'macos-latest' }}
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam switch create 5.2.0+flambda2 --repos with-extensions=git+https://github.com/janestreet/opam-repository.git#with-extensions,default
- run: bash -c "eval $(opam env --switch 5.2.0+flambda2)"
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- name: Run tests
run: |
opam exec -- dune runtest
- name: Upload the build artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.ocaml-compiler }}-capymanga.exe
path: _build/default/app/capymanga/bin/main.exe
lint-doc:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: "5.1"
- run: opam switch create 5.2.0+flambda2 --repos with-extensions=git+https://github.com/janestreet/opam-repository.git#with-extensions,default
- run: bash -c "eval $(opam env --switch 5.2.0+flambda2)"
- uses: ocaml/setup-ocaml/lint-doc@v3
lint-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: "5.1"
- run: opam switch create 5.2.0+flambda2 --repos with-extensions=git+https://github.com/janestreet/opam-repository.git#with-extensions,default
- run: bash -c "eval $(opam env --switch 5.2.0+flambda2)"
- uses: ocaml/setup-ocaml/lint-fmt@v3