ci: Change CI JDK version to 17 #439
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: Test and Lint | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Build | |
run: ./gradlew build | |
- name: Unit Test | |
run: ./gradlew testDebugUnitTest | |
- name: Lint | |
run: ./gradlew ktlintCheck | |
- name: Upload build results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
# artifacts name | |
name: build-results | |
# copy reports of all packages | |
path: '**/build/reports/**' | |
# artifact will expire in 7 days. | |
retention-days: 7 | |