Release 5.7.0 #41
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: Check Release | |
# Every time we open a PR to merge develop into main branch for a release | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [ opened, synchronize, reopened ] | |
workflow_dispatch: | |
jobs: | |
check-release: | |
# https://github.com/actions/virtual-environments/ | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
# https://github.com/marketplace/actions/checkout | |
- uses: actions/checkout@v4 | |
# Setup Java 17 | |
# https://github.com/marketplace/actions/setup-java-jdk | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Gradle cache | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: true | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# Run gradlew check | |
- name: Gradle check | |
run: ./gradlew check |