Skip to content

Fixup pydantic deprecation warnings #30

Fixup pydantic deprecation warnings

Fixup pydantic deprecation warnings #30

Workflow file for this run

name: test
on: [push, pull_request]
env:
# Task vars
python-version: "3.10"
poetry-version: "1.5.1"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.python-version }}
- uses: pre-commit/action@v2.0.3
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: ${{ env.poetry-version }}
- uses: actions/setup-python@v4
with:
python-version: ${{ env.python-version }}
cache: "poetry"
- run: poetry install --no-root
- run: PYTHONPATH=src/.:tests/. poetry run pytest
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: ${{ env.poetry-version }}
- uses: actions/setup-python@v4
with:
python-version: ${{ env.python-version }}
cache: "poetry"
- run: poetry install --no-root
- run: poetry run mypy