Skip to content

Instantly share code, notes, and snippets.

@renanboni
Created December 12, 2020 12:32
Show Gist options
  • Save renanboni/fe31c2db78bc497567361928c4b91ff5 to your computer and use it in GitHub Desktop.
Save renanboni/fe31c2db78bc497567361928c4b91ff5 to your computer and use it in GitHub Desktop.
name: Android Feature Branch CI
on:
push:
branches:
- '*'
- '!master'
- '!release*'
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Unit tests
run: bash ./gradlew test --stacktrace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment