chore: bump org.jlleitschuh.gradle.ktlint from 11.2.0 to 11.5.0 #1250
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: "Cross Platform Tests" | |
on: | |
pull_request | |
jobs: | |
cross-platform-tests: | |
timeout-minutes: 30 | |
runs-on: macos-latest | |
steps: | |
- name: "Checkout Cross Platform Tests Repo" | |
uses: actions/checkout@v3 | |
with: | |
repository: mParticle/crossplatform-sdk-tests | |
- name: "Checkout Android SDK Branch" | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
ref: ${{github.head_ref}} | |
path: .sdks/android | |
- name: "Install JDK 11" | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "11" | |
- name: "Run Crossplatform Tests" | |
uses: reactivecircus/android-emulator-runner@v2.26.0 | |
with: | |
api-level: 29 | |
script: ./gradlew runAndroid | |
- name: "Archive Test Results" | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "test-results" | |
path: Tests/build/reports/androidTests/connected/** |