Skip to content

Feature/code generator (#18) #82

Feature/code generator (#18)

Feature/code generator (#18) #82

Workflow file for this run

name: Code Testing
on: push
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Check linter
run: |
ruff check
- name: Check format
run: |
ruff format --diff --check
testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
pydantic-version: ["pydantic1", "pydantic2"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Set up pydantic ${{ matrix.pydantic-version }}
run: |
python -m pip install --upgrade pip
pip install .[${{ matrix.pydantic-version }}]
- name: Test with pytest
run: |
python -m pytest tests/
- name: Coverage
run: |
coverage run -m pytest tests/
coverage report