Skip to content

Commit

Permalink
For CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed May 7, 2024
1 parent f6de273 commit 05589fa
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,21 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
- uses: actions/setup-java@v4

- name: Setup JDK 8
id: setup-java-11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'

- name: Set JAVA_HOME
run: echo "JAVA_HOME=${{ steps.setup-java-11.outputs.path }}" >> $GITHUB_ENV

- run: pip install --upgrade setuptools
- run: python setup.py test

- name: Run Test
run: echo ${{env.JAVA_HOME}}
python setup.py test

0 comments on commit 05589fa

Please sign in to comment.