ci: fix ci/test issues #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test-lang-java | |
| on: [pull_request] | |
| jobs: | |
| lang-java-test: | |
| name: "Lang Java test (ver: ${{ matrix.java }}) (os: ${{ matrix.os }})" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| java: [ '13', '15', '17', '21', '24' ] | |
| os: [ubuntu-22.04, macos-26-intel] | |
| include: | |
| - os: ubuntu-22.04 | |
| python-version: "3.7.17" | |
| - os: macos-26-intel | |
| python-version: "3.12" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: setup.py | |
| - name: Setup java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.java }} | |
| - run: make deps-dev | |
| - run: make install-from-pkg-tgz | |
| - run: make lang-java-test |