File tree Expand file tree Collapse file tree 4 files changed +36
-47
lines changed Expand file tree Collapse file tree 4 files changed +36
-47
lines changed Original file line number Diff line number Diff line change 1+ on : [push, pull_request]
2+
3+ name : ci
4+
5+ jobs :
6+ unit-test :
7+ name : unit-test
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ matrix :
11+ os : [macOS-latest, ubuntu-latest]
12+ steps :
13+ - uses : actions/checkout@v1
14+ with :
15+ fetch-depth : 1
16+ - uses : actions-rs/toolchain@v1
17+ with :
18+ toolchain : stable
19+ profile : minimal
20+ - run : cargo test --verbose --all
21+ staic-analysis :
22+ name : staic-analysis
23+ runs-on : ubuntu-latest
24+ steps :
25+ - uses : actions/checkout@v1
26+ with :
27+ fetch-depth : 1
28+ - uses : actions-rs/toolchain@v1
29+ with :
30+ toolchain : nightly-2019-11-06
31+ override : true
32+ profile : minimal
33+ components : clippy, rustfmt
34+ - run : cargo fmt -- --check
35+ - run : cargo clippy --all --all-targets -- -D warnings
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- 1.38.0
1+ stable
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ reorder_modules = true
3434# reorder_impl_items = false
3535# report_todo = "Never"
3636# report_fixme = "Never"
37- # skip_children = false
3837space_after_colon = true
3938space_before_colon = false
4039struct_field_align_threshold = 0
You can’t perform that action at this time.
0 commit comments