Do not run tests with --all-features on rust 1.32
This commit is contained in:
parent
a97d54bcad
commit
d5e035d2cf
1 changed files with 8 additions and 1 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -13,7 +13,14 @@ jobs:
|
||||||
- beta
|
- beta
|
||||||
- nightly
|
- nightly
|
||||||
include:
|
include:
|
||||||
|
- rust: 1.32.0
|
||||||
|
test_features: ""
|
||||||
|
- rust: stable
|
||||||
|
test_features: "--all-features"
|
||||||
|
- rust: beta
|
||||||
|
test_features: "--all-features"
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
|
test_features: "--all-features"
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
@ -27,7 +34,7 @@ jobs:
|
||||||
continue-on-error: ${{ matrix.allow_failure }}
|
continue-on-error: ${{ matrix.allow_failure }}
|
||||||
working-directory: ./schemars
|
working-directory: ./schemars
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose --all-features --no-fail-fast
|
run: cargo test --verbose ${{ matrix.test_features }} --no-fail-fast
|
||||||
continue-on-error: ${{ matrix.allow_failure }}
|
continue-on-error: ${{ matrix.allow_failure }}
|
||||||
working-directory: ./schemars
|
working-directory: ./schemars
|
||||||
- name: Run derive tests
|
- name: Run derive tests
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue