Skip to content

Commit d4ab608

Browse files
committed
Update github test workflow.
This updates the test workflow to fix several issues: - Python 3.6 is no longer available on the test hosts. - Node 12 is deprecated, and needs to be replaced with 16. - The name of the node step had a typo in it (Instal -> Install).
1 parent 69820b0 commit d4ab608

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.8']
12+
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.8']
1313
django-version: ['2.2', '3.0', '3.1', '3.2', '4.0', 'main']
1414
exclude:
1515
- python-version: '3.6'
@@ -40,9 +40,9 @@ jobs:
4040
- name: Set up Node
4141
uses: actions/setup-node@v1
4242
with:
43-
node-version: '12'
43+
node-version: '16'
4444

45-
- name: Instal Node dependencies
45+
- name: Install Node dependencies
4646
run: npm install
4747

4848
- name: Get pip cache dir

0 commit comments

Comments
 (0)