Test on windows #9
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: Build Project | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
name: '[${{ matrix.os }}] build plugin' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Write Gradle build properties to `~/.gradle/gradle.properties` | |
run: | | |
mkdir -p ~/.gradle | |
printf "org.gradle.jvmargs=-Xmx3G -XX:+UseParallelGC\n" >> ~/.gradle/gradle.properties | |
printf "org.gradle.vfs.watch=false\n" >> ~/.gradle/gradle.properties | |
shell: bash | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- uses: gradle/wrapper-validation-action@v2 | |
- uses: gradle/actions/setup-gradle@v3 | |
- run: ./gradlew assemble | |
- run: ./gradlew check | |
- run: ./gradlew publishToMavenLocal | |
- run: ./gradlew publishPlugins -m | |
- run: git diff --exit-code | |
- uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: test-results-${{ matrix.os }} | |
path: "${{ github.workspace }}/**/build/reports/tests" |