-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (42 loc) · 1.09 KB
/
fmt-clippy.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
43
44
45
46
47
48
49
name: Check code integrity (lock, fmt, clippy)
on:
push:
branches: [ "main" ]
tags:
- v*
- pre-rel-*
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
rust_stable: 1.79.0
jobs:
check_format:
name: Check formatting
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Rust ${{ env.rust_stable }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.rust_stable }}
components: rustfmt, clippy
- name: Setup cache
uses: Swatinem/rust-cache@v2
- name: Check lockfile
uses: actions-rs/cargo@v1
with:
command: tree
args: --locked
save-if: ${{ github.ref == 'refs/heads/master' }}
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Check clippy lints
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features --workspace -- -D warnings