Bump io.projectreactor:reactor-core from 3.5.6 to 3.5.8 in /plugins/repository-azure #120
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: Gradle Precommit | |
on: [pull_request] | |
jobs: | |
precommit: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, macos-latest] # precommit on ubuntu-latest is run as a part of the gradle-check workflow | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: adopt | |
- name: Run Gradle | |
run: | | |
./gradlew javadoc precommit --parallel |