Remove the lax_deserialize feature #53
Workflow file for this run
This file contains hidden or 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: Rust 1.46 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: dtolnay/rust-toolchain@1.46 | |
| - name: Check (no default features) | |
| run: cargo check --no-default-features | |
| - name: Check (default features) | |
| run: cargo check | |
| - name: Check (serde) | |
| run: cargo check --features serde | |
| - name: Check (all features) | |
| run: cargo check --all-features |