Skip to content

v4

v4 #726

Workflow file for this run

---
name: tarpaulin
on:
push:
branches:
- master
concurrency:
group: tarpaulin-${{ github.ref }}
cancel-in-progress: true
jobs:
tarpaulin:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/tarpaulin@v0.1
with:
version: '0.15.0'
args: '-- --test-threads 1'
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true