Skip to content

Commit

Permalink
Update runner
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAure committed Jun 4, 2024
1 parent d9033d7 commit 0e5bbb4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tck-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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
Expand All @@ -18,4 +25,5 @@ jobs:
java-version: ${{ matrix.java-version }}
cache: maven
- name: Running Jakarta Data TCK tests
run: mvn test --file jnosql-data-tck-runner/pom.xml -Djakarta.tck.profile=standalone -Djnosql.document.database=jnosql -Djnosql.mongodb.host=localhost:27017
# TODO start and stop mongo container
run: mvn test --file jnosql-data-tck-runner/pom.xml -Djnosql.document.database=mongodb -Djnosql.mongodb.host=localhost:27017

0 comments on commit 0e5bbb4

Please sign in to comment.