-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.12 KB
/
quality.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
36
37
38
39
40
41
42
on: push
env:
CARGO_TERM_COLOR: always
CARGO_UNSTABLE_SPARSE_REGISTRY: true
jobs:
check:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ checkout repository
uses: actions/checkout@v4
- name: 🛠 setup cargo toolchain
uses: dtolnay/rust-toolchain@stable
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.os }}
- name: ✅ run cargo check
run: cargo check
lint:
needs: check
runs-on: ubuntu-latest
steps:
- name: ⬇️ checkout repository
uses: actions/checkout@v4
- name: 🛠 setup cargo toolchain
uses: dtolnay/rust-toolchain@stable
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: ubuntu-latest
- name: 🔍 run cargo fmt
run: cargo fmt --check
- name: 🔍 run cargo fix
run: cargo fix
- name: 🔍 run cargo clippy
run: cargo clippy -- -Dwarnings