-
-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add unit test step in gradle ci #11547
add unit test step in gradle ci #11547
Conversation
- name: 'Test: run tests' | ||
run: ./gradlew clean integrationTest --no-daemon |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fabienpuissant : As @atomfrede said before, i think the clean should be removed from that command.
Thanks for fixing that issue!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
absolutely I've done this on my personal repo but not there xD
bc7602b
to
73164eb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your work!
@@ -25,5 +25,7 @@ jobs: | |||
uses: ./.github/actions/setup | |||
- name: Setup Gradle | |||
uses: gradle/gradle-build-action@v2 | |||
- name: 'Test: run unit tests' | |||
run: ./gradlew clean test --no-daemon | |||
- name: 'Test: run tests' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- name: 'Test: run tests' | |
- name: 'Test: run integration tests' |
@fabienpuissant : I only saw that now, sorry.
73164eb
to
10f58d1
Compare
Fix #11513