Skip to content

Commit 2cd7bb7

Browse files
committed
Make 3.6 Python builds run on Ubuntu 20.04
1 parent 39ae5b0 commit 2cd7bb7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ on: [push, pull_request]
55
jobs:
66
build:
77
name: build (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }})
8-
runs-on: ubuntu-latest
98
strategy:
109
fail-fast: false
1110
matrix:
1211
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
1312
django-version: ['3.2', '4.0', '4.1', 'main']
13+
os: ['ubuntu-latest']
14+
include:
15+
- os: 'ubuntu-20.04'
16+
- python-version: '3.6'
17+
runs-on: ${{ matrix.os }}
1418

1519
steps:
1620
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)