Merge pull request #4 from UbiqueInnovation/feature/maven-central #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Example | |
on: [ push, workflow_dispatch ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout repository | |
- name: Checkout | |
uses: actions/[email protected] | |
# Setup JDK environment | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
# Run the Gradle Build task | |
- name: Build Kts Example App | |
run: ./gradlew clean :examplekts:assemble | |
# Run the Gradle Build task | |
- name: Build Groovy Example App | |
run: ./gradlew clean :examplegroovy:assemble |