Skip to content

Preparing release 4.13.1 #2942

Preparing release 4.13.1

Preparing release 4.13.1 #2942

Workflow file for this run

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