Files

27 lines
490 B
YAML
Raw Permalink Normal View History

2020-03-17 11:17:19 +00:00
name: Android CI
on:
push:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
pull_request:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2024-04-25 16:52:34 +00:00
- uses: actions/checkout@v4
2021-04-05 15:31:49 +00:00
- name: set up JDK 11
2024-07-30 17:38:28 +00:00
uses: actions/setup-java@v4
2020-03-17 11:17:19 +00:00
with:
2021-04-05 15:31:49 +00:00
java-version: '11'
2022-01-14 23:06:01 +00:00
distribution: 'temurin'
2021-08-24 15:28:18 +00:00
cache: gradle
2021-04-05 15:31:49 +00:00
2020-12-18 20:01:57 +00:00
- name: Grant execute permission for gradlew
run: chmod +x gradlew
2020-03-17 11:17:19 +00:00
- name: Build with Gradle
run: ./gradlew build