Update dependency com.squareup.okio:okio to v3.10.2 #1152
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: PR build check | |
on: | |
pull_request: | |
paths: | |
- '**' | |
- '!**.md' | |
- '!i18n/src/commonMain/moko-resources/**/strings.xml' | |
- '!i18n/src/commonMain/moko-resources/**/plurals.xml' | |
- 'i18n/src/commonMain/moko-resources/base/strings.xml' | |
- 'i18n/src/commonMain/moko-resources/base/plurals.xml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build app | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0 | |
- name: Set up JDK | |
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0 | |
with: | |
java-version: 17 | |
distribution: adopt | |
- name: Set up gradle | |
uses: gradle/actions/setup-gradle@0bdd871935719febd78681f197cd39af5b6e16a6 # v4.2.2 | |
- name: Check code format | |
run: ./gradlew spotlessCheck | |
- name: Build app | |
run: ./gradlew assembleStandardRelease | |
- name: Run unit tests | |
run: ./gradlew testReleaseUnitTest testStandardReleaseUnitTest | |
- name: Upload APK | |
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 | |
with: | |
name: arm64-v8a-${{ github.sha }} | |
path: app/build/outputs/apk/standard/release/app-standard-arm64-v8a-release-unsigned.apk | |
- name: Upload mapping | |
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 | |
with: | |
name: mapping-${{ github.sha }} | |
path: app/build/outputs/mapping/standardRelease |