[WIP] 50/compatibity with 1.9.24 and 2.0.20 #3
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: Compatibility Test | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '**' | ||
- '!website/**' | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
paths: | ||
- '**' | ||
- '!website/**' | ||
- | ||
jobs: | ||
compatibility: | ||
strategy: | ||
matrix: | ||
version: ['1.9.24', '2.0.0', '2.0.20-Beta1'] | ||
build: | ||
Check failure on line 21 in .github/workflows/compatibility-test.yml GitHub Actions / Compatibility TestInvalid workflow file
|
||
name: Build and Analysis | ||
permissions: | ||
pull-requests: read | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
cache: 'gradle' | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
- name: Publish to Maven Local | ||
run: ./gradlew publishToMavenLocal | ||
- name: Build | ||
run: ./test/kotlin-${{ matrix.version }}/gradlew build |