Skip to content

Add clarification for the syn::DeriveInput explanation #14

Add clarification for the syn::DeriveInput explanation

Add clarification for the syn::DeriveInput explanation #14

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose --all-features
- name: Build Release
run: cargo build --verbose --all-features --release
- name: Run tests
run: cargo test --verbose --all-features -- --nocapture
- name: Run tests in `tests/`
run: cargo run-tests --verbose --all-features -- --nocapture