Commit 94daff9
committed
ci: remove actions using Rust nightly
Nightly quite often breaks CI by introducing new clippy linters etc,
which disrupts one's work when one wants to land a PR whose CI
suddenly fails for unrelated reasons.
Sometimes, the new linters are also broken and result in false
positives. The one that prompted this commit is a false positive about
needless_return like this:
rust-lang/rust-clippy#13526
```
error: unneeded `return` statement
--> tests/simulator_tests.rs:212:51
|
212 | for simulator_filename in simulator_filenames {
| ___________________________________________________^
213 | | println!("Simulator tests using {}", simulator_filename);
214 | | let _server = Server::launch(&simulator_filename);
... |
244 | | test_btc(&paired_bitbox).await
245 | | }
```
(there is no return statement)1 parent 6dd99fd commit 94daff9
1 file changed
+0
-22
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | 48 | | |
71 | 49 | | |
72 | 50 | | |
| |||
0 commit comments