- Only test Python 3.10

This commit is contained in:
Wim Pomp
2023-03-31 13:09:57 +02:00
parent 332eaab6d5
commit f68afd0a1b
3 changed files with 6 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.10"]
python-version: ["3.10"]
os: [ubuntu-20.04, windows-2019, macOS-11]
steps:
@@ -16,8 +16,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[test]
- name: Install
run: pip install .[test]
- name: Test with pytest
run: pytest