Skip to content

Commit

Permalink
Merge pull request #440 from joke2k/fix/ci
Browse files Browse the repository at this point in the history
Correct CI workflow to use supported Python versions/OS matrix
  • Loading branch information
sergeyklay committed Mar 1, 2023
2 parents bd1e640 + 300b828 commit d307861
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,25 @@ jobs:

matrix:
python:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11.0-beta.3 - 3.11.0'
- '3.11'
- 'pypy-3.7'
os: [ ubuntu-latest, macos-latest, windows-latest ]

# These versions are no longer supported by Python team, and may
# eventually be dropped from GitHub Actions. The support of these
# versions by django-environ will continue for as long as possible,
# and may be discontinued at any time.
include:
- python: '3.5'
os: ubuntu-20.04
- python: '3.6'
os: ubuntu-20.04
- python: '3.7'
os: ubuntu-20.04

steps:
- name: Checkout code
uses: actions/checkout@v3.0.2
Expand Down

0 comments on commit d307861

Please sign in to comment.