.gitea/workflows: don't clippy check all features
Some checks failed
Build and test / check (push) Successful in 1m44s
Build and test / docs (push) Has been cancelled
Build and test / test (push) Has been cancelled
Build and test / build (push) Has been cancelled
Build and test / check-license (push) Has been cancelled

This commit is contained in:
2025-12-04 13:51:33 +09:00
parent 162c8cd422
commit a6804e01df

View File

@@ -36,7 +36,7 @@ jobs:
run: cargo fmt -- --check
- name: Check clippy
run: cargo clippy --all-features -- --deny warnings
run: cargo clippy -- --deny warnings
check-license:
runs-on: ubuntu-latest
@@ -72,7 +72,7 @@ jobs:
- name: Run tests
run: |
cargo nextest run --all-features --release --no-fail-fast
cargo nextest run --release --no-fail-fast
env:
RUST_LOG: "trace"
RUSTFLAGS: "-Cinstrument-coverage"