Skip to content

If field.default is set in the dataclass then set default for the argument #82

If field.default is set in the dataclass then set default for the argument

If field.default is set in the dataclass then set default for the argument #82

Workflow file for this run

name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
pip3 --version
pip3 install setuptools tox
- name: Run tox
run: tox -e py