Bump thiserror from 1.0.64 to 2.0.9 #577
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: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: coverage | |
run: | | |
docker run \ | |
--security-opt seccomp=unconfined \ | |
-v "$(pwd):/volume" \ | |
xd009642/tarpaulin:latest \ | |
cargo tarpaulin -f -t 5 --out Xml -v -- --test-threads=1 || true | |
- name: upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} |