File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11name : ' Publish'
2+ env :
3+ RUSTUP_TOOLCHAIN : stable
24on :
35 schedule :
46 # every day at 3am
Original file line number Diff line number Diff line change 77
88env :
99 RUST_BACKTRACE : full
10+ RUSTUP_TOOLCHAIN : stable
1011
1112concurrency :
1213 group : ${{ github.workflow }}-${{ github.ref }}
@@ -169,7 +170,9 @@ jobs:
169170 env:
170171 GITBUTLER_TESTS_NO_CLEANUP: '1'
171172 name: cargo test
172- - run : cargo clippy --workspace --all-targets -- -D warnings
173+ - run : |
174+ rustup component add clippy
175+ cargo clippy --workspace --all-targets -- -D warnings
173176 name: cargo clippy
174177 - run : |
175178 set -e
Original file line number Diff line number Diff line change 11name : E2E Blackbox Tests
2+ env :
3+ RUSTUP_TOOLCHAIN : stable
24on :
35 pull_request :
46 branches : [master]
Original file line number Diff line number Diff line change 11[toolchain ]
2- channel = " stable"
2+ # IMPORTANT: This should match CI so it won't download the toolchain all the time.
3+ channel = " 1.90"
34components = [
45 " rustfmt" ,
56 " clippy" ,
You can’t perform that action at this time.
0 commit comments