Skip to content

Bump pymongo from 4.7.0 to 4.8.0 #364

Bump pymongo from 4.7.0 to 4.8.0

Bump pymongo from 4.7.0 to 4.8.0 #364

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
build:
# prevent this action from running on forks
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: requirements-dev.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt --quiet
- name: mypy
run: |
mypy --version
rm -rf .mypy_cache
mypy flamyngo
- name: pydocstyle
run: |
pydocstyle --count flamyngo
- name: pylint
run: |
pylint flamyngo
- name: black
run: |
black --version
black --check --diff --color flamyngo
- name: flake8
run: |
flake8 --version
flake8 --count --show-source --statistics flamyngo
# exit-zero treats all errors as warnings.
flake8 --count --exit-zero --max-complexity=20 --statistics flamyngo