mirror of
https://github.com/haraldh/chainerror.git
synced 2025-01-31 09:04:14 +01:00
23 lines
798 B
YAML
23 lines
798 B
YAML
|
name: coverage
|
||
|
|
||
|
on: [ "push" , "pull_request" ]
|
||
|
jobs:
|
||
|
test:
|
||
|
name: coverage
|
||
|
runs-on: ubuntu-latest
|
||
|
container:
|
||
|
image: xd009642/tarpaulin
|
||
|
options: --security-opt seccomp=unconfined
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Generate code coverage
|
||
|
run: |
|
||
|
cargo tarpaulin --verbose --all-features --workspace --timeout 120 --out Lcov --output-dir coverage
|
||
|
|
||
|
- name: Upload to coveralls
|
||
|
uses: coverallsapp/github-action@master
|
||
|
with:
|
||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|