Skip to content

migrating to pydantic #103

migrating to pydantic

migrating to pydantic #103

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: poetry install --no-interaction
- name: Lint with flake8
run: |
poetry run make lint
- name: Run unit tests
run: |
poetry run make test