Skip to content

Commit

Permalink
Github Actions - expand test matrix
Browse files Browse the repository at this point in the history
Fixes: #207
  • Loading branch information
asedeno committed Sep 26, 2021
1 parent 1a5b4cf commit d902943
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -103,3 +103,17 @@ 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
container: python:3-slim
steps:
- name: Inform Coveralls of Completion
run: |
pip3 install --upgrade coveralls
coveralls --service=github --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d902943

Please sign in to comment.