Improve FromMeta
implementation for enums
#105
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: Compile Test | |
on: [push, pull_request] | |
jobs: | |
compiletest: | |
runs-on: ubuntu-latest | |
env: | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: "--cfg compiletests" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@1.65.0 | |
- name: main crate | |
run: | | |
cargo build --verbose | |
cargo test --no-fail-fast --verbose --test compiletests -- --nocapture |