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 302fbc7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/drip-django.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
include:
# python 3.4
# python 3.5
- python-version: "3.5"
django-version: "2.2"
# python 3.6
Expand Down Expand Up @@ -73,12 +73,13 @@ jobs:
runs-on: ubuntu-latest
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
AGENT_TOOLSDIRECTORY: /opt/hostedtoolache

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python version ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit 302fbc7

Please sign in to comment.