chore: bump project version to 0.6.3 #65
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 | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '16' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Cache Konan | |
id: cache-kotlin-konan | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.konan/**/* | |
key: kotlin-konan | |
- name: Build project | |
run: ./gradlew compileKotlinJvm compileKotlinMingwX64 compileKotlinLinuxX64 compileKotlinLinuxArm64 compileKotlinMacosX64 compileKotlinMacosArm64 --build-cache --parallel --no-daemon |