Skip to content

Bump tokio from 1.28.0 to 1.29.0 #1717

Bump tokio from 1.28.0 to 1.29.0

Bump tokio from 1.28.0 to 1.29.0 #1717

Workflow file for this run

on: [push]
name: Code Coverage Pipeline
jobs:
coverage:
name: LLVM Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- name: Install cargo-llvm-cov and cargo-nextest
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest,cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov nextest --all-features --no-fail-fast --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: lcov.info
fail_ci_if_error: true