Add support for entry enums #343
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: Build | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toolchain: | |
| # MSRV history: | |
| # 1.86 - trait upcasts (required) | |
| # 1.87 - `extend_from_string` | |
| # 1.88 - darling 0.23 | |
| # 1.89 - required since 1.88 does not work in trybuild | |
| - "1.89.0" # Current MSRV | |
| - stable | |
| - nightly | |
| flags: | |
| - "--all-features" | |
| - "--no-default-features" | |
| env: | |
| RUST_BACKTRACE: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| uses: ./.github/actions/rust-build | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| flags: ${{ matrix.flags }} |