mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 04:27:02 +05:30
33 lines
738 B
YAML
33 lines
738 B
YAML
name: CI
|
|
|
|
"on":
|
|
push:
|
|
branches:
|
|
- staging
|
|
- trying
|
|
- develop
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
|
|
jobs:
|
|
test-pr:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-java@d202f5dbf7256730fb690ec59f6381650114feb2
|
|
with:
|
|
java-version: '11'
|
|
- name: Checkout repository
|
|
uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461
|
|
|
|
- uses: burrunan/gradle-cache-action@v1
|
|
name: Run unit tests
|
|
with:
|
|
arguments: testDebug --stacktrace
|
|
|
|
- name: (Fail-only) upload test report
|
|
if: failure()
|
|
uses: actions/upload-artifact@27bce4eee761b5bc643f46a8dfb41b430c8d05f6
|
|
with:
|
|
name: Test report
|
|
path: app/build/reports
|