Skip to content

Bump codecov/codecov-action from 3 to 4 #20

Bump codecov/codecov-action from 3 to 4

Bump codecov/codecov-action from 3 to 4 #20

Workflow file for this run

on:
push:
branches: [master]
pull_request:
name: Code Coverage
jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: taiki-e/install-action@cargo-llvm-cov
- run: cargo llvm-cov --doctests --lcov --output-path lcov.info
- uses: codecov/codecov-action@v4
with:
files: lcov.info
fail_ci_if_error: true