Skip to content

Commit

Permalink
ci: clippy all targets and make it happy (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
theJasonFan authored Mar 1, 2024
1 parent 96c130a commit f591c42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ parent=$(cd $(dirname $0) && pwd -P)
repo_root=$(cd $(dirname $0)/.. && pwd -P)

run "Formatting" "cargo fmt"
run "Clippy" "cargo clippy -- -D warnings"
run "Clippy" "cargo clippy --all-features --all-targets -- -D warnings"
run "Unit Tests" "cargo test"

if [ -z "$failures" ]; then
Expand Down
2 changes: 1 addition & 1 deletion src/bin/commands/demux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1769,7 +1769,7 @@ mod tests {
read_structures,
sample_metadata,
output_types: vec!['T', 'B'],
output: output_dir.clone(),
output: output_dir,
unmatched_prefix: "unmatched".to_owned(),
max_mismatches: 1,
min_mismatch_delta: 2,
Expand Down

0 comments on commit f591c42

Please sign in to comment.