chore: exit prerelease mode #58
Workflow file for this run
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@v4 | |
| - 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@v4 | |
| # 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@v4 | |
| - run: ./gradlew clean build -PjavaVersion=11 --stacktrace | |
| env: | |
| JITPACK: true | |
| - run: ./gradlew sdk:publishToMavenLocal --stacktrace | |
| env: | |
| JITPACK: true |