This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
Attempt to fix sign action #314
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: Check | |
on: [ pull_request ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ashutoshgngwr/validate-fastlane-supply-metadata@v2 | |
with: | |
fastlaneDir: ./fastlane/metadata/android | |
usePlayStoreLocales: true | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Checks | |
run: ./gradlew check :app:koverXmlReportRelease :app:koverVerifyRelease | |
- name: SonarCloud | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew sonar | |
- name: Publish test reports | |
uses: mikepenz/action-junit-report@v4 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: './**/build/test-results/**/TEST-*.xml' | |
uiTests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@13f81365a437096ca29f87b1e7389bf0ea1385ed | |
- name: Run tests | |
run: ./gradlew allDevicesCheck --no-daemon -Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" |