This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
Add ReferrerService #18
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
# SPDX-FileCopyrightText: 2020 microG Team | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Build | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 17 | |
cache: gradle | |
- run: ./gradlew --no-daemon build | |
env: | |
TERM: dumb | |
JAVA_OPTS: -Xmx2048m |