Remove alphabetical category sort option #1378
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@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Set up gradle | |
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0 | |
- name: Check code format | |
run: ./gradlew spotlessCheck | |
- name: Build app | |
run: ./gradlew assembleRelease | |
- name: Run unit tests | |
run: ./gradlew testReleaseUnitTest | |
- name: Upload APK | |
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 | |
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@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 | |
with: | |
name: mapping-${{ github.sha }} | |
path: app/build/outputs/mapping/release |