We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc3de4 commit 224c540Copy full SHA for 224c540
.github/workflows/codestyle.yml
@@ -69,3 +69,13 @@ jobs:
69
webapp/public
70
webapp/config
71
72
+ pycodestyle:
73
+ runs-on: ubuntu-latest
74
+ steps:
75
+ - uses: actions/checkout@v4
76
+ - name: Download pycodestyle python file
77
+ run: >
78
+ curl -L -o /tmp/pycodestyle.py 'https://github.com/PyCQA/pycodestyle/raw/refs/tags/2.12.1/pycodestyle.py'
79
+ - name: Check codestyle in python files
80
81
+ python3 /tmp/pycodestyle.py --exclude='./example_problems/,./doc/,./gitlab/' --max-line-length 120 --show-pep8 --show-source .
0 commit comments