build(deps): bump ktorVer from 1.6.8 to 2.3.6 #416
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: Swift | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Build | |
run: | | |
./gradlew common:build --console plain | |
cd native/KotlinIOS | |
xcodebuild \ | |
-project KotlinIOS.xcodeproj \ | |
-scheme KotlinIOS \ | |
-destination 'platform=iOS Simulator,name=iPhone 11 Pro Max,OS=latest' | |
- name: Run tests | |
run: | | |
./gradlew common:build --console plain | |
cd native/KotlinIOS | |
xcodebuild \ | |
-project KotlinIOS.xcodeproj \ | |
-scheme KotlinIOS \ | |
-destination 'platform=iOS Simulator,name=iPhone 11 Pro Max,OS=latest' \ | |
test | xcpretty --test --color |