CI: add tarpaulin #330
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: coverage | |
on: [push] | |
jobs: | |
test: | |
name: coverage | |
runs-on: ubuntu-latest | |
container: | |
image: xd009642/tarpaulin:develop-nightly | |
options: --security-opt seccomp=unconfined | |
strategy: | |
matrix: | |
# FIXME: currently not available for 5.0.0. | |
# It might be related to boxroot dependency, and we would need to bump | |
# up the ocaml-rs dependency | |
ocaml_version: ["4.14"] | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup OCaml ${{ matrix.ocaml_version }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml_version }} | |
# https://github.com/ocaml/setup-ocaml/issues/211#issuecomment-1058882386 | |
# disable-cache: true | |
# Not activating all features because of Caml | |
- name: Generate code coverage | |
run: | | |
cargo +nightly tarpaulin --verbose --release --workspace --timeout 120 --out xml | |
# - name: Upload to codecov.io | |
# uses: codecov/codecov-action@v2 | |
# with: | |
# # token: ${{secrets.CODECOV_TOKEN}} # not required for public repos | |
# fail_ci_if_error: true |