We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf55ce commit 93ba67eCopy full SHA for 93ba67e
2 files changed
.github/workflows/lint.yml
@@ -27,7 +27,7 @@ jobs:
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
- pip install ".[lint]"
+ python -m pip install ".[lint]"
31
32
- name: Lint
33
run: pre-commit run --all-files --show-diff-on-failure --color always
.github/workflows/test.yml
@@ -7,8 +7,8 @@ jobs:
7
runs-on: ${{ matrix.os }}-latest
8
strategy:
9
matrix:
10
- os: [ubuntu]
11
- python-version: ["3.10"]
+ os: [ubuntu, macos, windows]
+ python-version: ["3.8", "3.9", "3.10", "3.11-dev"]
12
13
steps:
14
- uses: actions/checkout@v3
@@ -27,8 +27,8 @@ jobs:
- pip install ".[test]"
+ python -m pip install ".[test]"
- name: Test
34
- PYTHONPATH=. pytest
+ python -m pytest
0 commit comments