Preparing release 4.13.1 #2942
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
name: Check PR | |
# Every PR should be checked for static analysis | |
on: | |
pull_request: | |
branches: [ v4 ] | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
gradle-check: | |
# 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@v2 | |
# Setup Java 11 | |
# https://github.com/marketplace/actions/setup-java-jdk | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
cache: 'gradle' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# Run gradlew check | |
- name: Gradle check | |
run: ./gradlew check --no-daemon |