Skip to content

Commit

Permalink
Make 3.6 Python builds run on Ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
kytta committed Dec 6, 2022
1 parent 39ae5b0 commit 9882cb5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ on: [push, pull_request]
jobs:
build:
name: build (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
django-version: ['3.2', '4.0', '4.1', 'main']
os: [ubuntu-latest]
include:
- os: ubuntu-20.04
- python-version: '3.6'
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 9882cb5

Please sign in to comment.