Created
December 12, 2020 12:32
-
-
Save renanboni/fe31c2db78bc497567361928c4b91ff5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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