We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb4f63 commit 36c3530Copy full SHA for 36c3530
.github/workflows/rust.yml
@@ -75,13 +75,17 @@ jobs:
75
~/.cargo/registry
76
target
77
key: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}} Lock ${{hashFiles('Cargo.lock')}}"
78
- - run: cargo test --no-default-features --features ffmpeg,log -- --include-ignored
+ - name: install cargo-all-features
79
+ uses: baptiste0928/cargo-install@v2
80
+ with:
81
+ crate: cargo-all-features
82
+ - run: cargo test-all-features-- --include-ignored
83
if: github.event_name != 'pull_request'
84
env:
85
RUST_BACKTRACE: 1
86
RUST_TEST_THREADS: 1
87
TG_BOT_KEY: ${{ secrets.TG_BOT_KEY }}
- - run: cargo test --no-default-features --features ffmpeg,log
88
+ - run: cargo test-all-features
89
if: github.event_name == 'pull_request'
90
91
0 commit comments