| 12345678910111213141516171819202122 |
- # Builds the project
- name: Android Feature Branch CI
- on:
- push:
- branches:
- - '*'
- - '!master'
- jobs:
- build:
- name: Build the project
- runs-on: ubuntu-latest
- steps:
- - name: Checkout project
- uses: actions/checkout@v2
- - name: Set up JDK 1.8
- uses: actions/setup-java@v1
- with:
- java-version: 1.8
- - name: Build with Gradle
- run: ./gradlew build
|