Fix compilation without default features

This commit is contained in:
Robin Krahl
2024-06-02 20:29:25 +02:00
parent 498fee7f7b
commit be44c0b252
5 changed files with 26 additions and 9 deletions
+9
View File
@@ -27,6 +27,15 @@ jobs:
run: rustup show
- uses: actions/checkout@v3
- name: Check
run: |
cargo check --all-targets
cargo check --all-targets --all-features
cargo check --all-targets --no-default-features
cargo check --all-targets --no-default-features --features serde
cargo check --all-targets --no-default-features --features dir-entry-path
- name: Build
run: cargo build --release --verbose