File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 7
7
name : Continuous Integration
8
8
9
9
jobs :
10
+ ci :
11
+ name : CI
12
+ runs-on : ubuntu-latest
13
+ needs : [build, test, test-strict]
14
+ if : always()
15
+ steps :
16
+ - name : Done
17
+ run : jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
18
+
10
19
# check if the project builds with MSRV, stable and nighly
11
20
build :
12
21
name : " Build (${{ matrix.name || matrix.rust }})"
30
39
with :
31
40
toolchain : ${{ matrix.rust }}
32
41
components : clippy
42
+ - run : cargo check
43
+ env :
44
+ RUSTFLAGS : -D warnings
33
45
- run : cargo clippy
34
46
35
47
test :
Original file line number Diff line number Diff line change 19
19
//! - [SVD Schema file](https://www.keil.com/pack/doc/CMSIS/SVD/html/schema_1_2_gr.html)
20
20
//! - [SVD file database](https://github.com/posborne/cmsis-svd/tree/master/data)
21
21
//! - [Sample SVD file](https://www.keil.com/pack/doc/CMSIS/SVD/html/svd_Example_pg.html)
22
-
23
- #![ deny( warnings) ]
24
-
22
+ //!
25
23
//! Parse traits.
26
24
//! These support parsing of SVD types from XML
27
25
You can’t perform that action at this time.
0 commit comments