Update indicatif requirement from 0.17.11 to 0.18.1 #314
Workflow file for this run
This file contains hidden or 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, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| name: "coverage" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| build: [stable] | |
| include: | |
| - build: stable | |
| os: ubuntu-latest | |
| rust: nightly | |
| steps: | |
| - name: "Checkout repository" | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: "Enable caching" | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Push to codecov.io | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| run: | | |
| cargo install cargo-tarpaulin | |
| cargo tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml | |
| bash <(curl -s https://codecov.io/bash) -X gcov -t $CODECOV_TOKEN |