mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 15:50:16 +02:00
22 lines
544 B
YAML
22 lines
544 B
YAML
name: Setup
|
|
description: "Setup the environment"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
# Setup the SDKs
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
cache: 'pip'
|
|
- name: Setup JDK
|
|
uses: actions/setup-java@v5
|
|
with:
|
|
distribution: zulu
|
|
java-version: '21'
|
|
cache: 'gradle'
|
|
- name: Setup Android SDK
|
|
uses: android-actions/setup-android@v3
|
|
with:
|
|
packages: "tools platform-tools build-tools;36.0.0 ndk;29.0.14206865"
|