diff --git a/.github/workflows/drill-checks.yml b/.github/workflows/drill-checks.yml index eeb26df141..4fe3977617 100644 --- a/.github/workflows/drill-checks.yml +++ b/.github/workflows/drill-checks.yml @@ -8,10 +8,17 @@ on: type: string required: false default: 'false' + push: + branches: + - develop + paths-ignore: + - '.github/**' + - README.md + - gradle.properties jobs: call-java-checks: - name: Call Java Checks + name: Call Java Checks with Drill4J runs-on: 'rp-beta-runner-set' env: DRILL_AGENT_ENABLED: ${{ inputs.drill-agent-enabled }} @@ -33,12 +40,11 @@ jobs: - name: Build with Gradle id: build run: | - ./gradlew build - continue-on-error: true + ./gradlew test --continue - name: Upload test report - if: failure() uses: actions/upload-artifact@v3 with: name: test-report - path: build/reports/tests/test/index.html + path: | + build/reports/tests/test/**