File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 23
23
- name : Install dependencies
24
24
run : |
25
25
python -m pip install --upgrade pip
26
- pip install -e '.[test ]'
26
+ pip install -e '.[dev ]'
27
27
- name : Run tests
28
28
run : pytest tests/ -v --cov=content_aggregator --cov-report=xml
29
29
- name : Upload coverage
36
36
if : github.event_name == 'push'
37
37
name : Test on Main Commit
38
38
runs-on : ubuntu-latest
39
- needs : test-on-pr
40
39
steps :
41
40
- uses : actions/checkout@v4
42
41
- uses : actions/setup-python@v4
@@ -45,10 +44,12 @@ jobs:
45
44
- name : Install dependencies
46
45
run : |
47
46
python -m pip install --upgrade pip
48
- pip install -e '.[test]'
47
+ pip install -e '.[dev]'
48
+ - name : Run tests
49
+ run : pytest tests/ -v
49
50
- name : Run security checks
50
51
run : |
51
52
bandit -r src/content_aggregator
52
53
safety check
53
54
- name : Run type checks
54
- run : mypy src/content_aggregator
55
+ run : mypy src/content_aggregator
You can’t perform that action at this time.
0 commit comments