mobile-application/.github/workflows/build.yaml
Ben Martin 25dd3ae7cb
Some checks failed
Build / build (pull_request) Failing after 1m38s
feat: update JDK version to 17 in CI workflows
This commit updates the JDK version used in the CI build and release workflows from 11 to 17. This change affects the `build.yaml` and `release.yaml` files.
2025-01-21 00:29:24 +00:00

24 lines
405 B
YAML

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '17'
- name: Build with Gradle
run: ./gradlew composeApp:buildDebug