-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 895 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Clippy Lints
on:
push:
branches: main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
clippy-lints-stable:
runs-on: ubuntu-latest
name: Clippy Lints (Stable)
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Install the latest stable Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Run clippy Lints
run: cargo clippy --all-features -- -D warnings
clippy-lints-beta:
runs-on: ubuntu-latest
name: Clippy Lints (Beta)
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Install the latest beta Rust toolchain
uses: dtolnay/rust-toolchain@beta
with:
components: clippy
- name: Run clippy Lints
run: cargo clippy --all-features -- -D warnings