Initial commit

This commit is contained in:
zontreck 2025-03-20 10:39:07 -07:00 committed by GitHub
commit 94a0826131
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 2444 additions and 0 deletions

21
.github/actions/common-setup/action.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: 'Common Setup'
description: 'Set up JDK and grant execute permissions for gradlew'
inputs:
java-version:
description: 'Java version'
required: true
default: '21'
runs:
using: 'composite'
steps:
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ inputs.java-version }}
distribution: 'zulu'
cache: gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3