File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed
Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -43,15 +43,19 @@ jobs:
4343 default : ' true'
4444
4545 - name : Use clippy to lint code (dev)
46- uses : actions-rs/clippy-check@v1
47- with :
48- name : Clippy Report (${{ hashFiles('rust-toolchain') }}, ${{ matrix.os }})
49- token : ${{ secrets.GITHUB_TOKEN }}
50- args : --all-features --all-targets -- -D warnings
46+ env :
47+ FMT : ' false'
48+ LINT : ' true'
49+ DOC : ' false'
50+ BUILD : ' false'
51+ TEST : ' false'
52+ run : ./test.sh
5153
5254 - name : Use clippy to lint code (release)
53- uses : actions-rs/clippy-check@v1
54- with :
55- name : Clippy Report (${{ hashFiles('rust-toolchain') }}, ${{ matrix.os }})
56- token : ${{ secrets.GITHUB_TOKEN }}
57- args : --all-features --all-targets --release -- -D warnings
55+ env :
56+ FMT : ' false'
57+ LINT : ' true'
58+ DOC : ' false'
59+ BUILD : ' false'
60+ TEST : ' false'
61+ run : ./test.sh
You can’t perform that action at this time.
0 commit comments