Fix ConcurrentModificationException with plugins that changes configu… #84
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, pull_request ] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
# Install required tools | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "11" | |
# Run tests | |
- name: Tests on macOS, Linux | |
run: ./gradlew clean 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 |