Upgrade to Kotlin 1.9 #41
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: | |
paths-ignore: | |
- '**.md' | |
- '**/.gitignore' | |
- '.github/**' | |
- '!.github/workflows/test.yml' | |
push: | |
branches: | |
- 'master' | |
- 'test-ci-build' | |
paths-ignore: | |
- '**.md' | |
- '**/.gitignore' | |
- '.github/**' | |
- '!.github/workflows/test.yml' | |
jobs: | |
check: | |
name: Check | |
runs-on: macos-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v2 | |
- name: Fetch submodules | |
run: git submodule update --init | |
- name: Cached Konan | |
uses: actions/cache@v2 | |
with: | |
path: ~/.konan | |
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
restore-keys: ${{ runner.os }}-konan- | |
- name: Cached Gradle | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
restore-keys: ${{ runner.os }}-gradle- | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Install build tools | |
run: | | |
brew install autoconf@2.69 automake coreutils gettext libtool po4a | |
brew link --overwrite autoconf@2.69 | |
- name: Check iOS | |
run: ./gradlew iosX64Test | |
# - name: Check Android | |
# uses: reactivecircus/android-emulator-runner@v2 | |
# with: | |
# api-level: 29 | |
# ndk: 21.3.6528147 | |
# cmake: 3.10.2.4988404 | |
# script: ./gradlew connectedCheck |