chore: linting

This commit is contained in:
zhom
2025-07-28 02:11:31 +04:00
parent e1d600c072
commit 711b7a7a5e
15 changed files with 152 additions and 141 deletions
+4 -4
View File
@@ -63,16 +63,16 @@ jobs:
run: cargo fmt --all -- --check
- name: Run Clippy
run: cargo clippy --target ${{ matrix.target }} --all-targets --all-features -- -D warnings
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build
run: cargo build --target ${{ matrix.target }} --verbose
run: cargo build --verbose
- name: Run tests
run: cargo test --target ${{ matrix.target }} --verbose
run: cargo test --verbose
- name: Build release
run: cargo build --target ${{ matrix.target }} --release --verbose
run: cargo build --release --verbose
# Test installation from crates.io simulation
install-test: