Skip to content

chore: exit prerelease mode #58

chore: exit prerelease mode

chore: exit prerelease mode #58

Workflow file for this run

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