Port smol_str test to new integration test style #917
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.70.0 | |
- stable | |
- beta | |
- nightly | |
include: | |
- rust: 1.70.0 | |
allow_failure: false | |
- rust: stable | |
allow_failure: false | |
- rust: beta | |
allow_failure: false | |
- rust: nightly | |
allow_failure: true | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Check with no feature flags | |
run: cargo check --verbose --no-default-features | |
continue-on-error: ${{ matrix.allow_failure }} | |
working-directory: ./schemars | |
- name: Run tests | |
run: cargo test --verbose --all-features --no-fail-fast | |
continue-on-error: ${{ matrix.allow_failure }} | |
working-directory: ./schemars | |
- name: Run derive tests | |
run: cargo test --verbose --all-features --no-fail-fast | |
continue-on-error: ${{ matrix.allow_failure }} | |
working-directory: ./schemars_derive |