spoticord/.github/workflows/cargo-clippy.yml

25 lines
427 B
YAML
Raw Normal View History

2023-06-08 14:32:38 +00:00
name: Cargo Clippy
on:
pull_request:
branches:
- main
2023-06-08 14:38:46 +00:00
- dev
2023-06-08 14:32:38 +00:00
jobs:
clippy:
name: Run Clippy
runs-on: ubuntu-latest
2024-08-12 14:14:24 +00:00
2023-06-08 14:32:38 +00:00
steps:
- name: Checkout code
uses: actions/checkout@v4
2024-08-12 14:14:24 +00:00
2023-06-08 14:32:38 +00:00
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
2024-08-12 14:14:24 +00:00
2023-06-08 14:32:38 +00:00
- name: Run Cargo Clippy
run: cargo clippy --all-targets --all-features -- -D warnings