Skip to content

Commit 3242198

Browse files
committed
add tests for git, get all files changed instead of first page
1 parent 2168714 commit 3242198

File tree

5 files changed

+621
-58
lines changed

5 files changed

+621
-58
lines changed

.github/actions/clippy-annotation-reporter/Cargo.lock

Lines changed: 71 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/clippy-annotation-reporter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ clap = { version = "4.3", features = ["derive", "env"] }
99
octocrab = "0.44"
1010
anyhow = "1.0"
1111
regex = "1.9"
12-
# TODO: EK - fix features
1312
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
1413
serde_json = "1.0"
1514
log = "0.4"
1615
env_logger = "0.10"
1716
# Octocrab has a defined MSRV < 1.78 and depends on url 2.5.4 which also has a defined MSRV < 1.78 but url has a dependency on `idna` has a MSRV of 1.81. Not sure what is going on here.
1817
url = "=2.5.2"
1918
toml = "0.8.22"
19+
mockall = "0.13.1"
2020

2121
[dev-dependencies]
2222
httpmock = "0.6"

.github/actions/clippy-annotation-reporter/src/analyzer/crate_detection.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ mod tests {
8383
use super::*;
8484
use std::fs::{self, File};
8585
use std::io::Write;
86-
use std::path::PathBuf;
8786
use tempfile::TempDir;
8887

8988
// Helper function to create a Cargo.toml file with a specific package name

0 commit comments

Comments
 (0)