mangadex-home-rs/.github/workflows/coverage.yml

22 lines
571 B
YAML
Raw Permalink Normal View History

2021-07-12 05:05:18 +00:00
name: coverage
on: [push]
jobs:
test:
name: coverage
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Generate code coverage
run: |
2021-07-12 05:08:19 +00:00
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --avoid-cfg-tarpaulin --out Xml
2021-07-12 05:05:18 +00:00
- name: Upload to codecov.io
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true