[th2-1836] Updated th2 gradle plugin 0.0.8
#127
Workflow file for this run
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 integration tests for LDP" | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 'zulu' '11' | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build with Gradle | |
run: ./gradlew --info clean integrationTest | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: integration-test-results | |
path: build/reports/tests/integrationTest/ |