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 1818 - uses : actions-rs/clippy-check@v1
1919 with :
2020 token : ${{ secrets.GITHUB_TOKEN }}
21- - run : cargo clippy
22- working-directory : embedded-hal-async
Original file line number Diff line number Diff line change 99
1010#![ deny( missing_docs) ]
1111#![ no_std]
12+ #![ feature( generic_associated_types) ]
You can’t perform that action at this time.
0 commit comments