do not request for calendar permissions on opening config or when NON… #569
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
# https://github.com/actions | |
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/actions/checkout | |
- uses: actions/checkout@v4 | |
# https://github.com/actions/cache | |
- uses: actions/cache@v3 | |
with: | |
# https://github.com/actions/cache/blob/main/examples.md#java---gradle | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
# https://github.com/gradle/wrapper-validation-action | |
- uses: gradle/wrapper-validation-action@v1 | |
# https://github.com/actions/setup-java | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- run: ./gradlew -Dorg.gradle.jvmargs=-Xmx4096m |