Skip to content

Bump sphinx from 6.2.1 to 7.2.5 in /docs #333

Bump sphinx from 6.2.1 to 7.2.5 in /docs

Bump sphinx from 6.2.1 to 7.2.5 in /docs #333

Workflow file for this run

name: Linter
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8
- name: Lint with flake8
run: |
# Stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# Show if there are other lint issues without setting the workflow to failed status
flake8 --config .flake8