fix coverage from cram tests and executables #167
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: deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
persist-credentials: false | |
- name: setup-ocaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: "5.1" | |
- name: setup-deploy | |
run: | | |
opam pin add . -y --no-action | |
opam depext -y owi | |
opam install -y ./*.opam --deps-only --with-test --with-doc | |
opam upgrade --fixup | |
touch doc/.nojekyll | |
- name: api | |
run: | | |
opam exec -- dune build @doc | |
mv _build/default/_doc/_html doc/api | |
- name: coverage | |
run: | | |
BISECT_FILE=$(pwd)/bisect opam exec -- dune runtest --force --instrument-with bisect_ppx | |
opam exec -- bisect-ppx-report html -o doc/coverage | |
- name: coverage-badge | |
run: | | |
label=coverage | |
percentage=$(opam exec -- bisect-ppx-report summary | sed -E 's/.*\((..).*/\1/g') | |
color=$(printf "%x%x%x" $((255-$percentage)) $((155+$percentage)) 85) | |
opam exec -- ocb --style classic --label $label --status $percentage'%' --color $color > doc/coverage/badge.svg | |
- name: deploy | |
uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: doc/ | |
CLEAN: true |