File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,25 @@ jobs:
19
19
runs-on : ${{ matrix.os }}
20
20
steps :
21
21
- uses : actions/checkout@v4
22
- - name : Install dependencies
23
- run : |
24
- python -m pip install --upgrade pip
25
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26
- if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
27
22
- name : Lint with Ruff
28
23
run : |
29
24
pip install ruff
30
25
ruff --output-format=github .
31
26
continue-on-error : true
32
27
28
+ - name : Install dependencies
29
+ run : |
30
+ python -m pip install --upgrade pip
31
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32
+ if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
33
+ pip install coveralls
34
+ pip install mypy
35
+ python -m pip install --editable .
36
+
37
+
33
38
- name : Run tests
34
39
run : |
35
40
make quick_test
36
- make test
41
+ make test_coverage
42
+ make typecheck
37
43
You can’t perform that action at this time.
0 commit comments