Rename the placeholder file from .gitkeep
to PLACEHOLDER
#271
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: Build & Test | |
on: | |
push: {} | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Linting | |
strategy: | |
fail-fast: true | |
matrix: | |
ocaml-compiler: | |
- 4.14.x | |
os: | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: fkirc/skip-duplicate-actions@master | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Check whitespaces | |
run: ./LINT | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: true | |
- name: Install dependencies | |
run: opam install --locked --deps-only --with-test --with-doc ./beluga.opam | |
- name: Check format | |
run: opam exec -- dune fmt | |
build-and-test: | |
name: Build & Test | |
strategy: | |
fail-fast: true | |
matrix: | |
ocaml-compiler: | |
- 4.14.x | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
# - windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Cancel queued workflows from earlier commits in this branch | |
- uses: fkirc/skip-duplicate-actions@master | |
- name: Set git to use LF line ending | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: true | |
- name: Install dependencies | |
run: opam install --locked --deps-only --with-test --with-doc ./beluga.opam | |
- name: Build | |
run: opam exec -- make | |
- name: Test | |
run: opam exec -- make test |