Skip to content

Commit 1957e73

Browse files
committed
Test on more versions and platforms
1 parent fdf55ce commit 1957e73

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install ".[lint]"
30+
python -m pip install ".[lint]"
3131
3232
- name: Lint
3333
run: pre-commit run --all-files --show-diff-on-failure --color always

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ${{ matrix.os }}-latest
88
strategy:
99
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"]
1212

1313
steps:
1414
- uses: actions/checkout@v3
@@ -27,8 +27,8 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install ".[test]"
30+
python -m pip install ".[test]"
3131
3232
- name: Test
3333
run: |
34-
PYTHONPATH=. pytest
34+
pytest --doctest-modules --durations=10

0 commit comments

Comments
 (0)