mirror of
https://github.com/TeamPiped/piped-proxy.git
synced 2024-08-14 23:50:45 +00:00
17 lines
374 B
YAML
17 lines
374 B
YAML
|
name: reviewdog / clippy
|
||
|
on: pull_request
|
||
|
jobs:
|
||
|
clippy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Install clippy
|
||
|
uses: dtolnay/rust-toolchain@stable
|
||
|
with:
|
||
|
components: clippy
|
||
|
- uses: Swatinem/rust-cache@v2
|
||
|
|
||
|
- uses: sksat/action-clippy@main
|
||
|
with:
|
||
|
reporter: github-pr-review
|