mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 22:02:35 +00:00
chore(ci): Ensure we test minimum features
I was working to drop the active features across all crates, so that when cargo unified them during `--workspace`, we'd get this for free. Alas, it looks like its not happening.
This commit is contained in:
parent
59f9473336
commit
df258eaa31
2 changed files with 6 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -68,6 +68,9 @@ jobs:
|
|||
run: make test-${{matrix.features}}
|
||||
- name: Test (benches)
|
||||
run: make test-${{matrix.features}} ARGS='--workspace --benches'
|
||||
- name: Test (ultra-minimal)
|
||||
if: matrix.build == 'minimal'
|
||||
run: make test-minimal ARGS='--manifest-path Cargo.toml'
|
||||
check:
|
||||
name: Check
|
||||
runs-on: ubuntu-latest
|
||||
|
|
3
.github/workflows/rust-next.yml
vendored
3
.github/workflows/rust-next.yml
vendored
|
@ -55,6 +55,9 @@ jobs:
|
|||
run: make test-${{matrix.features}}
|
||||
- name: Test (benches)
|
||||
run: make test-${{matrix.features}} ARGS='--workspace --benches'
|
||||
- name: Test (ultra-minimal)
|
||||
if: matrix.build == 'minimal'
|
||||
run: make test-minimal ARGS='--manifest-path Cargo.toml'
|
||||
rustfmt:
|
||||
name: rustfmt
|
||||
strategy:
|
||||
|
|
Loading…
Reference in a new issue