Skip to content

Commit

Permalink
Fix python version in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomichetti committed Aug 9, 2024
1 parent 49eb87b commit 3ef6acd
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/drip-django.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ jobs:
strategy:
matrix:
include:
# python 3.4
- python-version: "3.5"
django-version: "2.2"
# # python 3.5
# - python-version: "3.5"
# django-version: "2.2"
# python 3.6
- python-version: "3.6"
django-version: "2.2"
- python-version: "3.6"
django-version: "3.2"
# - python-version: "3.6"
# django-version: "2.2"
# - python-version: "3.6"
# django-version: "3.2"
# python 3.7
- python-version: "3.7"
django-version: "2.2"
- python-version: "3.7"
django-version: "3.2"
# - python-version: "3.7"
# django-version: "2.2"
# - python-version: "3.7"
# django-version: "3.2"
# python 3.8
- python-version: "3.8"
django-version: "2.2"
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
django-version: "4.2"
- python-version: "pypy3"
django-version: "5.2"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

Expand All @@ -84,10 +84,11 @@ jobs:

- name: Installing resources
run: |
pip install --upgrade pip==20.0.2
pip install --upgrade pip
pip install pipenv
- name: Installing requirements pipenv
run: |
pipenv install --python ${{ matrix.python-version }}
pipenv install --dev
- name: Installing Django version ${{ matrix.django-version }}
run: |
Expand Down

0 comments on commit 3ef6acd

Please sign in to comment.