Skip to content

Update ksp monorepo to v1.9.25-1.0.20 - autoclosed #290

Update ksp monorepo to v1.9.25-1.0.20 - autoclosed

Update ksp monorepo to v1.9.25-1.0.20 - autoclosed #290

Workflow file for this run

name: Run Tests on Pull Request
on:
push:
branches: [ "trunk" ]
pull_request:
branches: [ "trunk" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Cache Gradle build and build directories
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
**/build
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle
- name: Run tests
run: ./gradlew test