Integrate TCK test execution in jsonb/core modules (#125) #180
This file contains 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: Maven | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Test with Java ${{ matrix.jdk }} | |
#runs-on: ${{ matrix.os }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: [ '11', '17', '21' ] | |
dist: [ 'zulu' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.jdk }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.jdk }} | |
distribution: ${{ matrix.dist }} | |
cache: 'maven' | |
- name: Maven Package | |
env: | |
MAVEN_OPTS: -Dmaven.artifact.threads=64 | |
run: mvn -V package --no-transfer-progress |