mirror of
https://github.com/nuclearfog/Shitter.git
synced 2024-12-29 02:50:21 +01:00
20 lines
459 B
YAML
20 lines
459 B
YAML
|
# This workflow will build a Java project with Gradle
|
||
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
|
||
|
|
||
|
name: Android build
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout the code
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Build the app
|
||
|
run: ./gradlew build
|