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 cd22f6b commit 2ef2461Copy full SHA for 2ef2461
.github/workflows/tests.yml
@@ -31,3 +31,21 @@ jobs:
31
uses: codecov/[email protected]
32
with:
33
flags: unittests
34
+
35
+ lint:
36
+ runs-on: ubuntu-latest
37
+ steps:
38
+ - uses: actions/checkout@v3
39
40
+ - name: Set up Python
41
+ uses: actions/setup-python@v4
42
+ with:
43
+ python-version: "3.11"
44
45
+ - name: Install test dependencies
46
+ run: |
47
+ python -m pip install --upgrade --no-cache-dir pip
48
+ pip install --no-cache-dir flake8
49
50
+ - name: Test linting with flake8
51
+ run: flake8 --max-line-length=127
tox.ini
@@ -21,7 +21,7 @@ skip_install = true
21
deps =
22
flake8
23
commands =
24
- flake8 --max-line-length=120
+ flake8 --max-line-length=127
25
26
# Flake8 Configuration
27
[flake8]
0 commit comments