6
6
branches :
7
7
- main
8
8
9
-
10
9
jobs :
11
10
clippy_check :
12
11
strategy :
@@ -19,48 +18,48 @@ jobs:
19
18
steps :
20
19
- uses : actions/checkout@v3
21
20
22
- - uses : dtolnay/rust-toolchain@1.72 # do clippy chekcs with the minimum supported version
21
+ - uses : dtolnay/rust-toolchain@1.80 # do clippy chekcs with the minimum supported version
23
22
with :
24
23
components : rustfmt, clippy
25
24
26
25
- name : Validate cargo format
27
26
run : cargo fmt -- --check
28
27
29
- - name : Run tests
28
+ - name : Run tests
30
29
env :
31
30
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
32
31
run : cargo clippy
33
-
32
+
34
33
- name : Run tests (no-default-features)
35
34
env :
36
35
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
37
36
run : cargo clippy
38
-
37
+
39
38
- name : Run tests (value-no-dup-keys)
40
39
env :
41
40
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
42
41
run : cargo clippy --features value-no-dup-keys
43
-
42
+
44
43
- name : Run tests (known-key)
45
44
env :
46
45
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
47
46
run : cargo clippy --features known-key
48
-
47
+
49
48
- name : Run tests (128bit)
50
49
env :
51
50
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
52
51
run : cargo clippy --features 128bit
53
-
52
+
54
53
- name : Run tests (beef)
55
54
env :
56
55
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
57
56
run : cargo clippy --features beef
58
-
57
+
59
58
- name : Run tests (arraybackend)
60
59
env :
61
60
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
62
61
run : cargo clippy --features arraybackend
63
-
62
+
64
63
- name : Run tests (approx-number-parsing)
65
64
env :
66
65
RUSTFLAGS : " -C target-cpu=native ${{ matrix.rustflags }}"
0 commit comments