31 lines
891 B
YAML
31 lines
891 B
YAML
|
name: Push/PR Steps
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- release
|
||
|
|
||
|
jobs:
|
||
|
BuildAndTest:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- name: Fetch tags
|
||
|
run: git fetch --tags -p
|
||
|
- uses: actions/setup-java@v4
|
||
|
with:
|
||
|
distribution: 'temurin'
|
||
|
java-version: '17'
|
||
|
- name: Setup Android SDK
|
||
|
uses: android-actions/setup-android@v3
|
||
|
- name: Configure gradle...
|
||
|
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true\nsystemProp.org.gradle.internal.http.connectionTimeout=180000\nsystemProp.org.gradle.internal.http.socketTimeout=180000" >> ~/.gradle/gradle.properties
|
||
|
- name: Build and test
|
||
|
run: ./gradlew build --stacktrace
|