chore: release #125
Workflow file for this run
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] | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install cargo binstall | |
uses: cargo-bins/cargo-binstall@main | |
- name: Install tarpaulin | |
run: cargo binstall --no-confirm cargo-tarpaulin | |
- name: Setup Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Report test coverage | |
run: cargo tarpaulin --engine llvm --follow-exec --post-test-delay 10 --coveralls ${{ secrets.COVERALLS_REPO_TOKEN }} |