-
-
Notifications
You must be signed in to change notification settings - Fork 22
54 lines (41 loc) · 1.13 KB
/
check.yml
File metadata and controls
54 lines (41 loc) · 1.13 KB
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
50
51
52
53
54
name: Check project
on:
push:
branches: [ "main" ]
pull_request:
jobs:
clippy:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- kind: default-features
features: default
- kind: full-features
features: full
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- name: Add problem matchers
run: echo "::add-matcher::.github/rust.json"
- name: Run clippy
run: cargo clippy --features ${{ matrix.features }} --all-targets
rustfmt:
name: Format
runs-on: ubuntu-20.04
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
toolchain: nightly
- name: Add problem matchers
run: echo "::add-matcher::.github/rust.json"
- name: Check code formatting
run: cargo fmt -- --check