File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 27
27
- name : Install dependencies
28
28
run : |
29
29
python -m pip install --upgrade pip
30
- pip install ".[lint]"
30
+ python -m pip install ".[lint]"
31
31
32
32
- name : Lint
33
33
run : pre-commit run --all-files --show-diff-on-failure --color always
Original file line number Diff line number Diff line change 7
7
runs-on : ${{ matrix.os }}-latest
8
8
strategy :
9
9
matrix :
10
- os : [ubuntu]
11
- python-version : ["3.10 "]
10
+ os : [ubuntu, macos, windows ]
11
+ python-version : ["3.8", "3.9", "3.10", "3.11-dev "]
12
12
13
13
steps :
14
14
- uses : actions/checkout@v3
27
27
- name : Install dependencies
28
28
run : |
29
29
python -m pip install --upgrade pip
30
- pip install ".[test]"
30
+ python -m pip install ".[test]"
31
31
32
32
- name : Test
33
33
run : |
34
- PYTHONPATH=. pytest
34
+ pytest --doctest-modules --durations=10
You can’t perform that action at this time.
0 commit comments