Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ceesem authored Mar 5, 2024
1 parent 093bc45 commit ae963f1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.11

- uses: actions/cache@v2
with:
Expand All @@ -39,7 +39,11 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install service dependencies
run: |
if [ -f requirements_service.txt ]; then pip install -r requirements_service.txt; fi
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit ae963f1

Please sign in to comment.