File tree Expand file tree Collapse file tree 2 files changed +27
-17
lines changed Expand file tree Collapse file tree 2 files changed +27
-17
lines changed Original file line number Diff line number Diff line change
1
+ name : lint
2
+
3
+ on :
4
+ push :
5
+ branches : [master]
6
+ pull_request :
7
+ branches : [master]
8
+
9
+ jobs :
10
+ lint :
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Install rust
16
+ uses : actions-rs/toolchain@v1
17
+ with :
18
+ toolchain : stable
19
+ override : true
20
+ - name : Lint
21
+ run : bash ci/lint.sh
22
+ - name : Run ShellCheck
23
+ uses : ludeeus/action-shellcheck@master
24
+ with :
25
+ check_together : ' y'
Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ name: test
3
3
on :
4
4
push :
5
5
branches : [master]
6
+ paths : ' **.rs'
6
7
pull_request :
7
8
branches : [master]
9
+ paths : ' **.rs'
8
10
9
11
jobs :
10
12
test :
51
53
RUST_VERSION : ${{ matrix.rust_version }}
52
54
EXHAUSTIVE_TZ : ${{ matrix.exhaustive_tz }}
53
55
54
- lint :
55
- runs-on : ubuntu-latest
56
-
57
- steps :
58
- - uses : actions/checkout@v2
59
- - name : Install rust
60
- uses : actions-rs/toolchain@v1
61
- with :
62
- toolchain : stable
63
- override : true
64
- - name : Lint
65
- run : bash ci/lint.sh
66
- - name : Run ShellCheck
67
- uses : ludeeus/action-shellcheck@master
68
- with :
69
- check_together : ' y'
70
-
71
56
no_std :
72
57
strategy :
73
58
matrix :
You can’t perform that action at this time.
0 commit comments