Skip to content

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

Bump codecov/codecov-action from 3 to 4

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

Workflow file for this run

name: Coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: brndnmtthws/rust-action@v1
with:
toolchain: nightly
- run: cargo tarpaulin --out Xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}