Restructure ark-android repository #37
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 scorewidget module | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- scorewidget/** | |
pull_request: | |
branches: [ main ] | |
paths: | |
- scorewidget/** | |
jobs: | |
build: | |
if: ${{ ! startsWith(github.actor, 'dependabot') }} | |
environment: Development | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1.0.5 | |
- name: Build scorewidget module | |
run: ./gradlew scorewidget:assembleRelease |