Gradle wrapper #54
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: Assemble all subprojects | |
on: push | |
jobs: | |
assemble-all-subprojects: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Java JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '16' | |
- name: Check out the code | |
uses: actions/checkout@v2 | |
- name: Assemble all subprojects | |
run: ./gradlew assembleAll |