Skip to content

[Fixes #11574] Fix CircleCI black tests #3

[Fixes #11574] Fix CircleCI black tests

[Fixes #11574] Fix CircleCI black tests #3

Workflow file for this run

name: "flake8"
on:
push:
branches: [ "master", 4.0.x, 4.1.x ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master", 4.0.x, 4.1.x ]
jobs:
check_syntax:
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python-version}}
- name: Install flake8
run: pip install flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 geonode --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 geonode --count --statistics