mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 11:42:59 +01:00
c0693da9ba
* update msrv to 1.60 * inherit workspace msrv
44 lines
898 B
YAML
44 lines
898 B
YAML
name: Lint
|
|
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
fmt:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
with:
|
|
toolchain: nightly
|
|
components: rustfmt
|
|
|
|
- name: Rustfmt Check
|
|
run: cargo fmt --all -- --check
|
|
|
|
clippy:
|
|
permissions:
|
|
contents: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
with: { components: clippy }
|
|
|
|
- uses: giraffate/clippy-action@v1
|
|
with:
|
|
reporter: 'github-pr-check'
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
clippy_flags: --workspace --all-features --tests --examples --bins -- -Dclippy::todo
|