Update to 1.21.3 #17
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
on: | |
- pull_request | |
name: Validate PR | |
jobs: | |
build: | |
name: Build and validate PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Run validation task | |
run: ./gradlew validateData | |
- name: Upload ZIPs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: export-zips | |
path: build/exportZips/ |