| name: Coverage |
| |
| on: |
| push: |
| branches: |
| - master |
| pull_request: |
| branches: |
| - master |
| |
| jobs: |
| cover: |
| name: Auto Codecov Coverage |
| runs-on: ubuntu-latest |
| |
| steps: |
| - name: Checkout Repository |
| uses: actions/checkout@master |
| |
| - name: Install Rust toolchain |
| uses: actions-rs/toolchain@v1 |
| with: |
| profile: minimal |
| toolchain: nightly |
| override: true |
| |
| - name: Run cargo-tarpaulin |
| uses: actions-rs/tarpaulin@v0.1 |
| with: |
| args: --out Xml |
| |
| - name: Upload to codecov.io |
| uses: codecov/codecov-action@v1 |
| with: |
| token: ${{secrets.CODECOV_TOKEN}} |