Fix nightly test expectations #109
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: minimal-versions-build | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| jobs: | |
| minimal-versions-build: | |
| name: Minimal versions build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Fetch toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: nightly | |
| - name: Test with minimal versions | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: -Z minimal-versions --manifest-path=num_enum/Cargo.toml | |
| toolchain: nightly |