Skip to content

Add support for entry enums #343

Add support for entry enums

Add support for entry enums #343

Workflow file for this run

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