Skip to content

Add helper to access form fields directly in fieldsets. #54

Add helper to access form fields directly in fieldsets.

Add helper to access form fields directly in fieldsets. #54

Workflow file for this run

---
name: Test
on:
push:
branches: ["master"]
pull_request:
workflow_dispatch:
jobs:
test:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: "actions/checkout@v4"
- uses: "astral-sh/setup-uv@v5"
with:
python-version: ${{ matrix.python-version }}
- name: "Install tox"
run: "uv tool install tox --with tox-uv,tox-gh-actions,coverage"
- name: "Run tox targets for ${{ matrix.python-version }}"
run: "tox run"
- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v4"
if: ${{ github.repository_owner == 'stephrdev' }}
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}