Pydantic v1 restriction. Updated dependencies #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# python-version: ["3.8", "3.9", "3.10"] | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
$HOME/.local/bin/poetry install | |
- name: Check input line sorting with isort | |
run: | | |
source $(poetry env info --path)/bin/activate | |
isort -c . | |
- name: Check standarized formatting with yapf | |
run: | | |
source $(poetry env info --path)/bin/activate | |
yapf -r --diff . | |
- name: Lint with flake8 | |
run: | | |
source $(poetry env info --path)/bin/activate | |
flake8 . --count --show-source --statistics |