Skip to content

Commit

Permalink
add python setup to e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgamez committed Jan 20, 2025
1 parent ee798a1 commit ebb74eb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/end_to_end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ on:
- 'web/**'
- '.github/workflows/**'
workflow_dispatch:

env:
python-version: '3.11'
java_version: '11'

jobs:
validate_gradle_wrapper:
runs-on: ubuntu-latest
Expand All @@ -46,7 +51,7 @@ jobs:
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: ${{ env.java_version }}
distribution: 'temurin'
- name: Cache Gradle packages
uses: actions/cache@v3
Expand All @@ -68,6 +73,9 @@ jobs:
steps:
- name: Checkout repository code
uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: ${{ env.python_version }}
- name: Install dependencies
run: |
pip install -r scripts/mobility-database-harvester/requirements.txt
Expand Down

0 comments on commit ebb74eb

Please sign in to comment.