Update android to v9 (major) - autoclosed #176
Workflow file for this run
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: PR Check | |
| on: | |
| - pull_request | |
| - workflow_dispatch | |
| jobs: | |
| build: | |
| name: Gradle check | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, windows-latest ] | |
| runs-on: ${{ matrix.os }} | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Build and check with Gradle Wrapper | |
| run: ./check.sh | |
| - name: Store build report | |
| if: failure() | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: ${{ matrix.os }}-reports | |
| path: | | |
| **/build/reports/ | |
| **/build/test-results/ |