Bump org.jetbrains.kotlinx:kotlinx-serialization-json from 1.7.3 to 1.8.0 #728
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Validate Gradle Wrapper | |
uses: gradle/[email protected] | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Check spotless | |
run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --no-configuration-cache | |
- name: Check lint | |
run: ./gradlew lintDemoDebug | |
- name: Build all build type and flavor permutations | |
run: ./gradlew assemble | |
- name: Run local tests | |
run: ./gradlew testDemoDebug testProdDebug | |
- name: Upload build outputs (APKs) | |
uses: actions/[email protected] | |
with: | |
name: APKs | |
path: '**/build/outputs/apk/**/*.apk' | |
- name: Upload lint reports (HTML) | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: lint-reports | |
path: '**/build/reports/lint-results-*.html' | |
- name: Upload test results (XML) | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: test-results | |
path: '**/build/test-results/test*UnitTest/**.xml' |