Run Jakarta Data TCK #31
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: Run Jakarta Data TCK | |
on: | |
schedule: | |
- cron: '0 0 * * 1,3,5' #Monday, Wednesday, Friday at Midnight | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [17, 21] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java-version }} | |
cache: maven | |
- name: Test with maven | |
run: mvn test --file tck-runner/pom.xml |