V3 - Change OSSRH token #4947
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 v3 | |
# Every PR should be checked for static analysis | |
on: | |
pull_request: | |
branches: [ v3 ] | |
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 1.8 | |
# https://github.com/marketplace/actions/setup-java-jdk | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# Run gradlew check | |
- name: Gradle check | |
run: ./gradlew check |