Github Actions - expand test matrix

Fixes: #207
This commit is contained in:
Alejandro R. Sedeño 2021-09-26 09:04:39 -04:00 committed by Claude Paroz
parent ef1dc87368
commit 14ca04609c
1 changed files with 16 additions and 3 deletions

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
python-version: [3.6, 3.9]
xapian-version: [1.4.18]
steps:
@ -41,8 +41,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
django-version: [2.2]
python-version: [3.6, 3.9]
django-version: [2.2, 3.1, 3.2]
xapian-version: [1.4.18]
steps:
@ -103,3 +103,16 @@ jobs:
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: python-${{ matrix.python-version }}-django-${{ matrix.django-version }}-xapian-${{ matrix.xapian-version }}
COVERALLS_PARALLEL: true
coveralls:
needs: test
runs-on: ubuntu-latest
steps:
- name: Inform Coveralls of Completion
run: |
pip3 install --upgrade coveralls
coveralls --service=github --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}