Skip to content

Commit

Permalink
Add matrix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed May 13, 2024
1 parent fbefc2e commit e93b1eb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,21 @@ on:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
java: ['8', '11', '17', '21', '22']
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

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

- run: pip install --upgrade setuptools

Expand Down

0 comments on commit e93b1eb

Please sign in to comment.