File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [ staging, trying, master ]
4
+ pull_request :
5
+
6
+ name : Clippy check
7
+ jobs :
8
+ clippy_check-async :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - uses : actions-rs/toolchain@v1
13
+ with :
14
+ profile : minimal
15
+ toolchain : nightly
16
+ override : true
17
+ components : clippy
18
+ - run : cargo clippy
19
+ working-directory : embedded-hal-async
Original file line number Diff line number Diff line change 18
18
- uses : actions-rs/clippy-check@v1
19
19
with :
20
20
token : ${{ secrets.GITHUB_TOKEN }}
21
- - run : cargo clippy
22
- working-directory : embedded-hal-async
Original file line number Diff line number Diff line change 9
9
10
10
#![ deny( missing_docs) ]
11
11
#![ no_std]
12
+ #![ feature( generic_associated_types) ]
You can’t perform that action at this time.
0 commit comments