Skip to content

Update indicatif requirement from 0.17.11 to 0.18.1 #314

Update indicatif requirement from 0.17.11 to 0.18.1

Update indicatif requirement from 0.17.11 to 0.18.1 #314

Workflow file for this run

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