integrate openGov #3485
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: Tests Coverage | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '**/README.md' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**/README.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
TARPAULIN_VERSION: 0.27.1 | |
# LIBCLANG_PATH: "/usr/lib/llvm-11/lib" # default `llvm-config --prefix` | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
test: | |
name: Coverage Report | |
runs-on: [self-hosted, linux] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
- name: Setup cmake | |
uses: jwlawson/[email protected] | |
- name: Run cargo-tarpaulin | |
run: | | |
wget https://github.com/xd009642/tarpaulin/releases/download/${{ env.TARPAULIN_VERSION }}/cargo-tarpaulin-x86_64-unknown-linux-musl.tar.gz | |
tar -zxvf cargo-tarpaulin-x86_64-unknown-linux-musl.tar.gz -C $HOME/.cargo/bin | |
cargo tarpaulin -v --no-fail-fast --implicit-test-threads --workspace \ | |
-e acala-inspect \ | |
acala acala-cli e2e-tests acala-service \ | |
acala-primitives \ | |
acala-rpc \ | |
acala-runtime runtime-common runtime-integration-tests karura-runtime mandala-runtime \ | |
test-service \ | |
--exclude-files **/mock.rs **/weights.rs **/weights/* | |
- name: Upload to codecov.io | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) |