fix: regenerate after Event source allOf + const #146
This file contains hidden or 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: Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| format-check: | |
| runs-on: ubuntu-latest | |
| name: Check source code formatting | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - run: ./gradlew :sdk:checkFormat :examples:checkFormat --continue | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Java ${{ matrix.java }} | |
| strategy: | |
| matrix: | |
| java: ['11', '17', '21', '25'] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| # Gradle will detect the JVM installation from the ubuntu-latest image and use it | |
| # includes execution of unit tests | |
| - run: ./gradlew build -PjavaVersion=${{ matrix.java }} --stacktrace | |
| jitpack-build: | |
| runs-on: ubuntu-latest | |
| name: Jitpack build smoke test | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - run: ./gradlew clean build -PjavaVersion=11 --stacktrace | |
| env: | |
| JITPACK: true | |
| - run: ./gradlew sdk:publishToMavenLocal --stacktrace | |
| env: | |
| JITPACK: true |