Skip to content

fix(workflow): Updated the python version in workflow file. #42

fix(workflow): Updated the python version in workflow file.

fix(workflow): Updated the python version in workflow file. #42

Workflow file for this run

name: pr-build
env:
JAVA_SDK_LOCATION: "java"
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
java:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Java JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build
run: |
mvn -B package --file ${{ env.JAVA_SDK_LOCATION }}/pom.xml
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setting up Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine