diff --git a/.github/workflows/django-single-session-ci.yml b/.github/workflows/django-single-session-ci.yml index fe5dc78..5657274 100644 --- a/.github/workflows/django-single-session-ci.yml +++ b/.github/workflows/django-single-session-ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Set up Python uses: actions/setup-python@v4 @@ -29,14 +29,16 @@ jobs: - run: "mv testproject_temp/* testproject/" - run: pip install -r requirements.txt working-directory: 'testproject' - - run: python manage.py test --settings=docs.source.settings + - run: 'coverage run --source="." python manage.py test --settings=docs.source.settings' working-directory: 'testproject' + - name: Coveralls + uses: coverallsapp/github-action@v2 no-makemigrations: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Set up Python uses: actions/setup-python@v4 @@ -60,7 +62,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] locale: [nl] steps: - name: Set up Python @@ -88,7 +90,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Set up Python uses: actions/setup-python@v4 @@ -115,7 +117,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: checkout code uses: actions/checkout@v2.3.1