This repository was archived by the owner on Jun 28, 2025. It is now read-only.
Bump kotlin from 2.1.10 to 2.2.0 #66
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: Test | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| linux: | |
| name: Test on Linux | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 22 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Disable AppArmor | |
| #language=bash | |
| run: | | |
| sudo aa-teardown || true | |
| sudo systemctl disable --now apparmor.service | |
| - name: Run Tests | |
| run: ./gradlew apiCheck allTests |