Skip to content

Commit

Permalink
👷 Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Mar 1, 2024
1 parent a64448c commit 05a5889
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.8', '3.9', '3.10']
python: ['3.8', '3.9', '3.10', '3.11']
django: ['3.2', '4.1', '4.2']
include:
- python: '3.11'
django: '4.1'
- python: '3.11'
django: '4.2'
django: ['4.1', '4.2']

name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }})

Expand All @@ -30,8 +28,8 @@ jobs:
DJANGO: ${{ matrix.django }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand All @@ -41,8 +39,9 @@ jobs:
- name: Run tests
run: tox

- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: PYTHON_VERSION,DJANGO

publish:
Expand All @@ -53,8 +52,8 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
- docs
# - flake8
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand Down

0 comments on commit 05a5889

Please sign in to comment.