Test #349
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: Test | |
on: | |
push: | |
# Triggers the workflow on labeled PRs only. | |
pull_request_target: | |
types: [ labeled ] | |
jobs: | |
test: | |
if: github.event_name == 'push' || (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'safe to test')) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
java-version: [ "8", "11" ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
# Install required tools | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: ${{ matrix.java-version }} | |
# Install Go for the Artifactory setup in the next step | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.x | |
cache: false | |
- name: Install local Artifactory | |
uses: jfrog/.github/actions/install-local-artifactory@main | |
with: | |
RTLIC: ${{ secrets.RTLIC }} | |
# Run tests | |
- name: Tests on macOS, Linux | |
run: ./gradlew clean validatePlugins check | |
if: runner.os != 'Windows' | |
- name: Tests on Windows | |
run: ./gradlew.bat clean check | |
if: runner.os == 'Windows' | |
# Stop Gradle daemon | |
- name: Stop Gradle | |
run: ./gradlew --stop |