2021-02-24 10:48:41 +01:00
|
|
|
name: Lint
|
|
|
|
|
2023-04-01 22:39:19 +02:00
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2020-07-22 05:32:13 +02:00
|
|
|
|
|
|
|
jobs:
|
2021-02-24 10:48:41 +01:00
|
|
|
fmt:
|
2020-07-22 05:32:13 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-01 22:39:19 +02:00
|
|
|
|
2020-07-22 05:32:13 +02:00
|
|
|
steps:
|
2023-01-27 21:36:05 +01:00
|
|
|
- uses: actions/checkout@v3
|
2020-07-22 05:32:13 +02:00
|
|
|
|
2023-10-29 02:55:34 +01:00
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
|
2023-04-01 22:39:19 +02:00
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
components: rustfmt
|
|
|
|
|
2021-02-24 10:48:41 +01:00
|
|
|
- name: Rustfmt Check
|
2023-01-27 21:36:05 +01:00
|
|
|
run: cargo fmt --all -- --check
|
2020-07-22 05:32:13 +02:00
|
|
|
|
2021-02-24 10:48:41 +01:00
|
|
|
clippy:
|
2023-04-01 22:39:19 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2021-02-24 10:48:41 +01:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-01 22:39:19 +02:00
|
|
|
|
2021-02-24 10:48:41 +01:00
|
|
|
steps:
|
2023-01-27 21:36:05 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-02-24 10:48:41 +01:00
|
|
|
|
2023-10-29 02:55:34 +01:00
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
|
2023-04-01 22:39:19 +02:00
|
|
|
with: { components: clippy }
|
|
|
|
|
2023-10-29 02:55:34 +01:00
|
|
|
- uses: giraffate/clippy-action@v1.0.1
|
2020-07-22 05:32:13 +02:00
|
|
|
with:
|
2023-04-01 22:39:19 +02:00
|
|
|
reporter: 'github-pr-check'
|
2023-01-27 21:36:05 +01:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2023-10-29 02:55:34 +01:00
|
|
|
clippy_flags: --workspace --all-features --tests --examples --bins -- -Dclippy::todo -Aunknown_lints
|