Skip to content

Commit

Permalink
Running tests of all tox configured DBR versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tnixon committed Nov 3, 2023
1 parent f503c68 commit 924a125
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,33 @@ jobs:
- name: Run Type Checks
working-directory: ./python
run: tox -e type-check
tests:
runs-on: ubuntu-latest
name: Run Tests on all supported DBR configurations
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
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 }}
- name: Install Tox
run: pip install tox
- name: Run Type Checks
working-directory: ./python
run: tox -e dbr${{ matrix.dbr }}

0 comments on commit 924a125

Please sign in to comment.