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 8272001 commit 26f96b0Copy full SHA for 26f96b0
.github/workflows/ci.yml
@@ -24,8 +24,8 @@ jobs:
24
with:
25
python-version: "3.x"
26
cache: 'pip'
27
- cache-dependency-path: 'linter-requirements.txt'
28
- - run: python -m pip install -r linter-requirements.txt
+ cache-dependency-path: 'pyproject.toml'
+ - run: python -m pip install -e .[lint]
29
- run: ${{ matrix.lint-command }}
30
31
dist:
linter-requirements.txt
pyproject.toml
@@ -43,6 +43,13 @@ test = [
43
"pytest-django",
44
"redis",
45
]
46
+lint = [
47
+ "bandit==1.7.7",
48
+ "black==24.1.1",
49
+ "flake8==7.0.0",
50
+ "isort==5.13.2",
51
+ "pydocstyle[toml]==6.3.0",
52
+]
53
dramatiq = [
54
"django-dramatiq",
55
0 commit comments