Skip to content

Commit

Permalink
debugging test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
tnixon committed Nov 3, 2023
1 parent 924a125 commit 362c9ee
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@ jobs:
strategy:
matrix:
include:
- dbr: 73
py: 3.7
- dbr: 91
py: 3.8
- dbr: 104
py: 3.8
- dbr: 113
py: 3.9
- dbr: 122
py: 3.9
- dbr: 133
py: 3.10
- dbr: "dbr73"
python-version: "3.7"
- dbr: "dbr91"
python-version: "3.8"
- dbr: "dbr104"
python-version: "3.8"
- dbr: "dbr113"
python-version: "3.9"
- dbr: "dbr122"
python-version: "3.9"
- dbr: "dbr133"
python-version: "3.10"
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
python-version: ${{ matrix.python-version }}
- name: Install Tox
run: pip install tox
- name: Run Type Checks
working-directory: ./python
run: tox -e dbr${{ matrix.dbr }}
run: tox -e ${{ matrix.dbr }}

0 comments on commit 362c9ee

Please sign in to comment.