mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
try to separate test phases
This commit is contained in:
20
.github/workflows/pull-request.yml
vendored
20
.github/workflows/pull-request.yml
vendored
@@ -34,12 +34,26 @@ jobs:
|
||||
shell: bash
|
||||
run: docker compose -f docker-compose-ci.yml up -d
|
||||
|
||||
# Gradle check
|
||||
- name: Gradle - Build
|
||||
- name: unitTest
|
||||
shell: bash
|
||||
run: |
|
||||
./gradlew unitTest --parallel
|
||||
|
||||
- name: check
|
||||
if: ${{ github.event.inputs.skip-test == 'false' || github.event.inputs.skip-test == '' }}
|
||||
shell: bash
|
||||
run: |
|
||||
./gradlew check javadoc
|
||||
./gradlew check
|
||||
|
||||
- name: flakyTest
|
||||
shell: bash
|
||||
run: |
|
||||
./gradlew flakyTest
|
||||
|
||||
- name: javadoc
|
||||
shell: bash
|
||||
run: |
|
||||
./gradlew javadoc --parallel
|
||||
|
||||
- name: comment PR with test report
|
||||
if: ${{ !cancelled() && github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository}}
|
||||
|
||||
Reference in New Issue
Block a user