Skip to content

Improve api

Improve api #6

Workflow file for this run

name: "Build"
on: [pull_request, push]
env:
JAVA_OPTS: -Xms1g -Xmx3g
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.configureondemand=true -Dorg.gradle.jvmargs=-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Restore Gradle cache
id: cache
uses: actions/[email protected]
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.konan
key: ubuntu-latest-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
ubuntu-latest-gradle-
- name: Build
run: ./gradlew build