Skip to content

Commit

Permalink
ci(coverage): create test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
EdJoPaTo committed Jul 20, 2021
1 parent 54978c6 commit c6d13b2
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test Coverage

on:
push:
pull_request:

jobs:
tarpaulin:
name: Tarpaulin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
override: true
toolchain: stable

- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
with:
out-type: Html

- name: Upload Report
uses: actions/upload-artifact@v2
with:
name: report
path: tarpaulin-report.html

0 comments on commit c6d13b2

Please sign in to comment.