Skip to content

Bump codecov/codecov-action from 6.0.1 to 7.0.0 #100

Bump codecov/codecov-action from 6.0.1 to 7.0.0

Bump codecov/codecov-action from 6.0.1 to 7.0.0 #100

Workflow file for this run

name: Pull Request
on: [pull_request]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Rust
run: rustup show
- name: Run Tests
run: make test
format:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Rust
run: rustup show
- name: Check Formatting
run: make check-fmt
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Rust
run: rustup show
- name: Check Linting
run: make lint
coverage:
name: Coverage
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Rust
run: rustup show
- uses: taiki-e/install-action@56545b37b57562edd73171cb6c62cc509db4c34e # 2.81.7
with:
tool: cargo-tarpaulin
- name: Generate coverage
run: cargo tarpaulin --out Lcov --engine llvm
- name: Upload to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
files: ./lcov.info
token: ${{ secrets.CODECOV_TOKEN }}