Skip to content

build(deps): bump pydantic from 1.10.2 to 1.10.13 #27

build(deps): bump pydantic from 1.10.2 to 1.10.13

build(deps): bump pydantic from 1.10.2 to 1.10.13 #27

Workflow file for this run

name: Lint with Flake8
on:
push:
branches: ['!main', '**']
pull_request:
branches: [main, development]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --ignore=F401 --show-source --statistics
# exit-zero treats all errors as warnings.
flake8 . --count --ignore=F401 --max-complexity=10 --max-line-length=80 --statistics