Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix tarpaulin failing on full test #420

Merged
merged 3 commits into from
Mar 29, 2024

ci: Remove test matrix

3ad8789
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

ci: Fix tarpaulin failing on full test #420

ci: Remove test matrix
3ad8789
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Mar 29, 2024 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.77.1 (7cf61ebde 2024-03-27)
  • cargo 1.77.1 (e52e36006 2024-03-26)
  • clippy 0.1.77 (7cf61eb 2024-03-27)

Annotations

Check warning on line 421 in src/db/create/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

single-character string constant used as pattern

warning: single-character string constant used as pattern
   --> src/db/create/mod.rs:421:95
    |
421 |                 if (!is_mt && !aa_sequence.ends_with('*')) || (is_mt && !aa_sequence.contains("*"))
    |                                                                                               ^^^ help: consider using a `char`: `'*'`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
    = note: `#[warn(clippy::single_char_pattern)]` on by default