Skip to content

chore: version 5.10.0 #305

chore: version 5.10.0

chore: version 5.10.0 #305

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- next
paths-ignore:
- "README.md"
- "LICENSE"
push:
branches:
- main
- next
paths-ignore:
- "README.md"
- "LICENSE"
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Uses values from rust-toolchain.toml
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --check
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./lcov.info
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false