Compare commits

..

2 commits

Author SHA1 Message Date
a0d030d26e
ci(rust): continue testing on fmt or clippy error
All checks were successful
/ lint-n-test (push) Successful in 1m3s
2025-07-11 22:27:56 +10:00
6f6209ee7c
refactor: cargo clippy -- -D warnings 2025-07-11 22:27:29 +10:00
2 changed files with 4 additions and 2 deletions

View file

@ -11,6 +11,8 @@ jobs:
- uses: actions/checkout@v4
- run: rustup component add rustfmt clippy
- run: cargo fmt -- --check
continue-on-error: true
- run: cargo clippy -- -D warnings
continue-on-error: true
- run: cargo check
- run: cargo test
- run: cargo test

View file

@ -67,7 +67,7 @@ fn main() -> Result<()> {
.map(|x| {
format!(
"{} {}",
extract_date_time(&x.to_string()).first().unwrap(),
extract_date_time(x).first().unwrap(),
extract_message(x)
)
})