docs: complete GPL-3.0 license text and refresh changelog/version ref… #54
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| env: | |
| GRADLE_CACHE_URL: ${{ secrets.GRADLE_CACHE_URL }} | |
| GRADLE_CACHE_USERNAME: ${{ secrets.GRADLE_CACHE_USERNAME }} | |
| GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }} | |
| jobs: | |
| test: | |
| name: Test (Gradle ${{ matrix.gradle }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| gradle: ['9.5.1'] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - uses: gradle/actions/setup-gradle@v6 | |
| with: | |
| gradle-version: ${{ matrix.gradle }} | |
| - name: Build & Test | |
| run: ./gradlew :plugin:build :plugin:functionalTest --stacktrace | |
| - name: Upload test reports | |
| if: failure() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: test-reports-gradle-${{ matrix.gradle }} | |
| path: plugin/build/reports/ |