meddle

Results 10 comments of meddle

@kaimast @vicsn Squashed all into one commit now.

So I spent some time on checking `semgrep` and it is a fast static analysis tool that scans source code and configuration files using simple rule-based patterns, regexes mainly. Unlike...

## Dylint Dylint is a tool for running custom Clippy-like lints without needing to modify the Rust compiler or Clippy itself. It’s essentially a framework that lets you write, test,...

## cargo-edit Cargo edit mainly extends the cargo CLI. It adds commands like: ``` cargo add cargo rm cargo upgrade (update dependencies) cargo set-version ``` It modifies the Cargo.toml through...

## cargo hack This one can be used to test multiple feature combinations, which is interesting. I've been playing with it and ran: ``` cargo hack check \ --workspace \...

## Zizmor This is a tool for analysing github actions for possible problems with them. It doesn't seem like a thing you run in the CI, more something tat could...

So maybe from all these tools some worth we can get from `zizmor` as a commit hook check and we fix its warnings and from `cargo-hack` to force checks on...

OK, so I am leaving my findings in this ticket for now and we can do PRs later if we decide to use something - maybe zizmor (we need to...

It is related to the partitioning so not all tests are ran in the same container (which would make the test run slow - taking +10, +20 minutes). And in...

In my branch for improving the CI runs, I've been triggering the CI countless of times with different changes and at least until now I haven't seen SIGKILL. So maybe...