Skip to content

Feat/pydantic 2

Feat/pydantic 2 #5

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
pull_request:
types: [opened, synchronize, edited]
jobs:
RunTests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry and pre-commit
run: pip install poetry pre-commit
- name: Install poetry dependencies
run: poetry install
- name: Run tests
run: poetry run invoke test