2.33.0 #4076
This file contains hidden or 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.33.0 | |
| CARGO_INCREMENTAL: 0 | |
| jobs: | |
| test: | |
| name: Coverage Report | |
| runs-on: [self-hosted, linux] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/cache@v4 | |
| 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 --engine llvm --workspace \ | |
| -e \ | |
| acala acala-cli acala-service \ | |
| acala-primitives \ | |
| acala-rpc \ | |
| acala-runtime runtime-common runtime-integration-tests karura-runtime mandala-runtime \ | |
| ethjson evm-jsontests \ | |
| --exclude-files **/mock.rs **/weights.rs **/weights/* --out xml | |
| - name: Upload to codecov.io | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| fail_ci_if_error: true # optional (default = false) | |
| verbose: true # optional (default = false) | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |