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 2136315 commit 9852666Copy full SHA for 9852666
.github/workflows/ci.yml
@@ -55,9 +55,11 @@ jobs:
55
# playwright install-deps
56
- name: Run tests
57
run: pytest tests/ -v -m "not external"
58
+ - name: Run type checks
59
+ continue-on-error: true
60
+ run: mypy src/content_aggregator
61
- name: Run security checks
62
63
run: |
64
bandit -r src/content_aggregator
- safety check
- - name: Run type checks
- run: mypy src/content_aggregator
65
+ safety check
pyproject.toml
@@ -30,5 +30,7 @@ dev = [
30
"pytest-cov",
31
"mypy>=1.0",
32
"flake8>=5.0",
33
- "types-requests>=2.28.0"
+ "types-requests>=2.28.0",
34
+ "bandit>=1.7.5",
35
+ "safety>=2.3.5"
36
]
0 commit comments