Feat/kotlin 1.9.10 #350
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 & test | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Build and test (Android, Jvm, Js) | |
run: region=${{ secrets.region }} clientId=${{ secrets.clientid }} ./gradlew build test jsTest | |
- name: Build testapp and test request (iOS) | |
run: | | |
cd iostests | |
xcodebuild clean test -project TestApp.xcodeproj -scheme TestApp -destination "platform=iOS Simulator,OS=16.2,name=iPhone 12" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO region=${{ secrets.region }} clientId=${{ secrets.clientid }} | |
- name: Upload test result | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: reports | |
path: build/reports/ |