- Rename index.rs to database.rs for clarity in purpose

- Update references in `scan.rs` to the renamed module
- Add `cargo clippy` step to CI for linting
This commit is contained in:
elipeter 2025-06-16 23:54:18 +02:00
parent 33c819bd3a
commit aef0aea973
4 changed files with 4 additions and 2 deletions

View file

@ -18,5 +18,7 @@ jobs:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run linter
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --verbose