mirror of
https://codeberg.org/gitnex/GitNex.git
synced 2024-12-16 15:48:13 +08:00
88a8303b1c
* testing - test - build
23 lines
319 B
YAML
23 lines
319 B
YAML
kind: pipeline
|
|
name: testing
|
|
|
|
steps:
|
|
|
|
- name: test
|
|
image: nextcloudci/android:android-49
|
|
commands:
|
|
- ./gradlew test
|
|
|
|
- name: build
|
|
image: nextcloudci/android:android-49
|
|
commands:
|
|
- ./gradlew build
|
|
when:
|
|
branch:
|
|
- master
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
- pull_request
|