File tree 4 files changed +4
-11
lines changed
4 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,14 @@ jobs:
29
29
- name : Display Python version
30
30
run : python -c "import sys; print(sys.version)"
31
31
32
- - name : Install docs dependencies
32
+ - name : Install package and dependencies
33
33
run : |
34
34
sudo apt-get install pandoc
35
35
pip install setuptools --upgrade
36
36
pip install .[test,docs]
37
37
38
38
- name : Make docs
39
39
run : |
40
- pip install .
41
40
cd docs
42
41
make html
43
42
Original file line number Diff line number Diff line change @@ -18,13 +18,10 @@ jobs:
18
18
- name : Display Python version
19
19
run : python -c "import sys; print(sys.version)"
20
20
21
- - name : Install dependencies
21
+ - name : Install package and dependencies
22
22
run : |
23
23
pip install setuptools --upgrade
24
24
pip install .[coding_standards]
25
25
26
- - name : Install package
27
- run : pip install .
28
-
29
26
- name : Run `ruff` linter / formatter
30
27
run : ruff check .
Original file line number Diff line number Diff line change 22
22
- name : Display Python version
23
23
run : python -c "import sys; print(sys.version)"
24
24
25
- - name : Install package and dependencies for tests
25
+ - name : Install package and dependencies
26
26
run : |
27
27
pip install setuptools --upgrade
28
28
pip install .[test]
Original file line number Diff line number Diff line change @@ -18,14 +18,11 @@ jobs:
18
18
- name : Display Python version
19
19
run : python -c "import sys; print(sys.version)"
20
20
21
- - name : Install dependencies
21
+ - name : Install package and dependencies
22
22
run : |
23
23
pip install setuptools --upgrade
24
24
pip install .[type_checking]
25
25
26
- - name : Install package
27
- run : pip install .
28
-
29
26
- name : Run `mypy` type checker
30
27
# proceed even if mypy checking fails:
31
28
continue-on-error : true
You can’t perform that action at this time.
0 commit comments