Skip to content

Commit e1e8b31

Browse files
authored
Merge branch 'master' into feature/oidc-rp-initiated-logout
2 parents a86c03a + 769c0a2 commit e1e8b31

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,17 @@ jobs:
2626
- python-version: '3.7'
2727
django-version: 'main'
2828

29+
# < Python 3.10 is not supported by Django 5.0+
30+
- python-version: '3.8'
31+
django-version: 'main'
32+
- python-version: '3.9'
33+
django-version: 'main'
34+
2935
steps:
30-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3137

3238
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v4
3440
with:
3541
python-version: ${{ matrix.python-version }}
3642

@@ -41,7 +47,7 @@ jobs:
4147
echo "::set-output name=dir::$(pip cache dir)"
4248
4349
- name: Cache
44-
uses: actions/cache@v2
50+
uses: actions/cache@v3
4551
with:
4652
path: ${{ steps.pip-cache.outputs.dir }}
4753
key:
@@ -61,7 +67,7 @@ jobs:
6167
DJANGO: ${{ matrix.django-version }}
6268

6369
- name: Upload coverage
64-
uses: codecov/codecov-action@v1
70+
uses: codecov/codecov-action@v3
6571
with:
6672
name: Python ${{ matrix.python-version }}
6773

@@ -71,4 +77,4 @@ jobs:
7177
name: Test successful
7278
steps:
7379
- name: Success
74-
run: echo Test successful
80+
run: echo Test successful

0 commit comments

Comments
 (0)