Skip to content

add an example for forms with a variable number of fields #170

add an example for forms with a variable number of fields

add an example for forms with a variable number of fields #170

Workflow file for this run

name: Lint, format, and test
on:
push:
branches:
- 'main'
paths-ignore:
- 'docs/**'
- 'README.md'
- '.github/workflows/release.yml'
- '.github/workflows/official-site.yml'
pull_request:
branches:
- 'main'
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up cargo cache
uses: Swatinem/rust-cache@dd05243424bd5c0e585e4b55eb2d7615cdd32f1f
- run: cargo fmt --all -- --check
- run: cargo clippy
- run: cargo test
- run: cargo test --all-features