Add helper to access form fields directly in fieldsets. #54
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: 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 }} |