make bindoj_gen omit proper doc string (#394) #140
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: ocaml-general CI workflow | |
on: push | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
ocaml-version: | |
- 4.14.1 | |
- 5.0.0 | |
- 5.1.0 | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/kxcinc/ocaml-general:${{ matrix.ocaml-version }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 2 | |
# https://github.blog/2022-04-12-git-security-vulnerability-announced/ | |
- name: Safe directory | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: check OCaml version and workspace info | |
run: ./scripts/ci_print_env.sh | |
- run: ./scripts/ci_setup_ubuntu.sh | |
- name: Install dependencies | |
run: opam install . --yes --deps-only --with-test --verbose | |
- name: build & test | |
run: ./scripts/ci_run.sh | |
ocaml-general-checked: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "all set" |