Skip to content

Commit

Permalink
Debug check CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Oct 23, 2024
1 parent e65f8ff commit 8291793
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,23 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
java: ['8', '11', '17', '21', '23']
python: ['3.13t']
# java: ['8', '11', '17', '21', '23']
steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
# - uses: actions/setup-java@v4
# with:
# distribution: 'temurin'
# java-version: ${{ matrix.java }}

- uses: astral-sh/setup-uv@v3
- run: |
uv python install 3.13t
uv venv --python 3.13t
uv python install ${{ matrix.python }}
uv venv --python ${{ matrix.python }}
source .venv/bin/activate
uv pip install pip
echo $JAVA_HOME
echo PATH=$PATH >> $GITHUB_ENV
- run: pip install "setuptools < 72"
Expand Down

0 comments on commit 8291793

Please sign in to comment.