[#41] Formatting-Options like lowercase, uppercase, capitalize #147
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: Run checks | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
run-checks: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Gradle and Konan stuff | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
~/.konan/ | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Setting Java Home | |
run: echo "JAVA_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV | |
- name: Permission to run gradlew | |
run: chmod +x ./gradlew | |
&& chmod +x ./examples/example-js/gradlew | |
&& chmod +x ./examples/example-jvm/gradlew | |
&& chmod +x ./examples/example-mpp/gradlew | |
&& chmod +x ./examples/example-android/gradlew | |
- name: Install to local maven | |
run: ./gradlew publishToMavenLocal --stacktrace | |
- name: Run tests | |
run: ./gradlew allTest --stacktrace | |
- name: Build JS example | |
# Causes an Out-Of-Memory in Windows??? | |
if: runner.os != 'Windows' | |
run: | | |
cd ./examples/example-js | |
./gradlew build --stacktrace | |
- name: Build JVM example | |
# Causes an Out-Of-Memory in Windows??? | |
if: runner.os != 'Windows' | |
run: | | |
cd ./examples/example-jvm | |
./gradlew build --stacktrace | |
- name: Build MPP example | |
# Causes an Out-Of-Memory in Windows??? | |
if: runner.os != 'Windows' | |
run: | | |
cd ./examples/example-mpp | |
./gradlew build --stacktrace | |
- name: Build Android example | |
# Causes an Out-Of-Memory in Windows??? | |
if: runner.os != 'Windows' | |
run: | | |
cd ./examples/example-android | |
./gradlew build --stacktrace |