Skip to content

pydantic 2 compatability #27

pydantic 2 compatability

pydantic 2 compatability #27

Workflow file for this run

name: onboard.client
on:
push:
branches: dev
jobs:
tox:
runs-on: [self-hosted, linux]
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install tox
run: pip install tox
- name: Stylecheck (flake8)
run: tox -e flake8
- name: Test (pytest)
run: tox -e py3
- name: Typecheck (mypy)
run: tox -e mypy