Skip to content

Merge pull request #528 from mgeisler/mgeisler-patch-1 #241

Merge pull request #528 from mgeisler/mgeisler-patch-1

Merge pull request #528 from mgeisler/mgeisler-patch-1 #241

Workflow file for this run

name: coverage
on:
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
coverage:
name: Generate coverage
runs-on: ubuntu-latest
strategy:
matrix:
features:
- no-default-features
- all-features
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
args: '--${{ matrix.features }}'
- name: Upload to codecov.io
uses: codecov/codecov-action@v1