Skip to content

chore(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2 #40

chore(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2

chore(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2 #40

Workflow file for this run

on:
pull_request:
push:
branches:
- main
name: codecov
jobs:
coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- name: Setup toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-10-20
components: llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --lcov --no-default-features --features x11 --output-path lcov.info
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v5.1.2
with:
token: ${{ secrets.CODECOV_TOKEN }}