Skip to content

Upgrade pydantic

Upgrade pydantic #141

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv sync --dev
- name: Lint with flake8
run: |
pipenv run flake8
- name: Lint with isort
run: |
pipenv run isort
- name: Test with pytest
run: |
pipenv run test
- name: Check static typing
run: |
pipenv run mypy