-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix lint CI and split it into multiple jobs (#2785)
## Motivation On #1737 we added `continue-on-error` on the job level. AFAIU that will succeed even if the entire jobs fails with a cancellation for example, which will happen when we timeout. This was causing this job to silently succeed while timing out for a while. ## Proposal Split the different lints into their own jobs, adding parallelism and also giving us individual failures ## Test Plan CI ## Release Plan - Nothing to do / These changes follow the usual release cycle.
- Loading branch information
Andre da Silva
authored
Nov 5, 2024
1 parent
a51879f
commit 88ff8b3
Showing
2 changed files
with
134 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
|
||
mod chain_listener; | ||
mod util; | ||
#[cfg(feature = "fs")] | ||
mod wallet; |