Skip to content

Commit

Permalink
Merge pull request #75 from NeuralEnsemble/development
Browse files Browse the repository at this point in the history
Testing on more versions/platforms
  • Loading branch information
pgleeson authored May 2, 2024
2 parents 20e0248 + 72d9050 commit 4ffc069
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,29 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '16', '17' ]
runs-on: [ubuntu-latest, windows-latest, macos-latest ]
java: [ '8', '11', '16', '17', '19', '21' ]
runs-on: [ubuntu-latest, windows-latest, macos-latest, macos-12 ]
exclude:
- runs-on: macos-latest
java: "8"
- runs-on: macos-latest
java: "16"

name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.Java }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.Java }}
distribution: 'adopt'


- name: Install SVN on macos-latest
if: ${{ matrix.runs-on == 'macos-latest' }}
run: |
brew install subversion
- name: Set up env
run: |
mkdir temp
Expand Down

0 comments on commit 4ffc069

Please sign in to comment.