31 lines
581 B
YAML
31 lines
581 B
YAML
name: Test Coverage
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
tarpaulin:
|
|
name: Tarpaulin
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Setup Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
override: true
|
|
toolchain: stable
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Run cargo-tarpaulin
|
|
uses: actions-rs/tarpaulin@v0.1
|
|
with:
|
|
args: --all-features
|
|
out-type: Html
|
|
|
|
- name: Upload Report
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: report
|
|
path: tarpaulin-report.html
|