Apply ToolBox.updateTools() to all tools, not just class-based tools #5927
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
# This workflow will build a Java project with Gradle for verification purposes | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Build Verification | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- feature* | |
- release* | |
pull_request: | |
branches: | |
- main | |
- develop | |
- feature* | |
- release* | |
merge_group: | |
branches: | |
- develop | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: "21" | |
- name: spotlessCheck | |
run: ./gradlew spotlessCheck | |
build: | |
name: ${{ matrix.os }} w/JDK ${{ matrix.java }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macOS-13] | |
java: [ '21' ] | |
distribution: [ 'temurin'] | |
fail-fast: false | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: ${{ matrix.distribution }} | |
- name: Cache Gradle | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
#- name: Junit Report to Annotations | |
# uses: ashley-taylor/[email protected] | |
- name: Build with Gradle | |
uses: GabrielBB/[email protected] | |
with: | |
run: ./gradlew build --no-daemon |