diff --git a/.github/workflows/tox_test.yml b/.github/workflows/tox_test.yml index 2c50e28..0a7621a 100644 --- a/.github/workflows/tox_test.yml +++ b/.github/workflows/tox_test.yml @@ -26,7 +26,7 @@ jobs: - name: Install Dependencies run: | pip install -U pip - pip install tox + pip install tox tox-gh-actions pip install django==${{ matrix.django-version }} - name: Run Tests diff --git a/tox.ini b/tox.ini index 9b8fbc4..6bfa6d3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,13 @@ [tox] envlist = py{37,38,39,31}-django{32,40,41,50} +[gh-actions] +python = + 3.7: py37 + 3.8: py38 + 3.9: py39 + 3.10: py310 + [testenv] deps = django32: django==3.2