Do not run tests with --all-features on rust 1.32

This commit is contained in:
Graham Esau 2019-12-28 20:31:35 +00:00
parent a97d54bcad
commit d5e035d2cf

View file

@ -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