Skip to content

[Action]: bump codecov/codecov-action from 6 to 7 #356

[Action]: bump codecov/codecov-action from 6 to 7

[Action]: bump codecov/codecov-action from 6 to 7 #356

Workflow file for this run

name: lint
on:
workflow_call:
pull_request:
push:
branches:
- master
tags:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt,clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt -- --check
- uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GITHUB_TOKEN }}