|
|
|
@ -11,32 +11,6 @@ on:
|
|
|
|
|
# Allow manual runs
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
jobs:
|
|
|
|
|
test3_11:
|
|
|
|
|
name: Test Py3.11
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
- uses: actions/setup-python@v5
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.11"
|
|
|
|
|
- name: Run tests
|
|
|
|
|
run: |
|
|
|
|
|
python --version
|
|
|
|
|
pip install .[dev]
|
|
|
|
|
python -m pytest
|
|
|
|
|
test3_10:
|
|
|
|
|
name: Test Py3.10
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
- uses: actions/setup-python@v5
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
- name: Run tests
|
|
|
|
|
run: |
|
|
|
|
|
python --version
|
|
|
|
|
pip install -q .[dev]
|
|
|
|
|
python -m pytest
|
|
|
|
|
pytype3_10:
|
|
|
|
|
name: pytype 3.10
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|