wip #137
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: Keycloak CI | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
jobs: | |
base-integration-tests: | |
name: Base IT | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
group: [1, 2] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
cache: 'maven' | |
- run: | |
mvn install -Dsurefire.rerunFailingTestsCount=100 -f junit-testsuite-poc/pom.xml | |
- uses: ./.github/actions/report-flaky-test | |
env: | |
GH_TOKEN: ${{ github.token }} | |
with: | |
job-name: Base IT | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
cache: 'maven' | |
- run: | |
mvn install -Dsurefire.rerunFailingTestsCount=100 -f junit-testsuite-poc/pom.xml | |
- uses: ./.github/actions/report-flaky-test | |
env: | |
GH_TOKEN: ${{ github.token }} | |
with: | |
job-name: Unit Tests |