Bump the dependencies group with 2 updates #44
Workflow file for this run
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 - Lint | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pipenv wheel | |
pipenv install --deploy --dev | |
- name: Lint with Python ${{ matrix.python-version }} | |
run: | | |
pipenv run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
pipenv run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics |