Use doc_auto_cfg to automatically document gating features (#82) #46
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: | |
branches: [master] | |
jobs: | |
tarpaulin: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- run: cargo install cargo-tarpaulin | |
- run: > | |
cd lib && cargo tarpaulin --coveralls=${{ secrets.COVERALLS_TOKEN }} | |
--exclude-files=fuzz --exclude-files=tests --exclude-files=macro |