Skip to content

chore: use GH Runner App to create release PR #328

chore: use GH Runner App to create release PR

chore: use GH Runner App to create release PR #328

Workflow file for this run

name: Test
on:
push:
branches-ignore:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Java ${{ matrix.Java }}
strategy:
matrix:
java: [ '11', '17', '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '${{ matrix.java }}'
- run: ./gradlew test