This repository was archived by the owner on Jul 28, 2026. It is now read-only.
GradleRIO Update #148
Workflow file for this run
This file contains hidden or 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 | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: validate gradle wrapper | |
| uses: gradle/wrapper-validation-action@v1 | |
| - name: setup jdk | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: make gradle wrapper executable | |
| run: chmod +x ./gradlew | |
| - name: build | |
| run: ./gradlew build |