Run Jakarta Data TCK #52
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 | |
#TODO update to run on pull request/merge | |
#on: | |
# push: | |
# branches: [ main ] | |
# pull_request: | |
# branches: [ main ] | |
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: Running Jakarta Data TCK tests | |
# TODO start and stop mongo container | |
run: mvn test --file jnosql-data-tck-runner/pom.xml |