forked from dessalines/thumb-key
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.woodpecker.yml
36 lines (33 loc) · 848 Bytes
/
.woodpecker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
steps:
prettier_markdown_check:
image: tmknom/prettier
commands:
- prettier -c "**/*.md" "**/*.yml"
when:
- event: pull_request
check_formatting:
image: cimg/android:2023.09.1
commands:
- sudo chown -R circleci:circleci .
- ./gradlew lintKotlin
environment:
GRADLE_USER_HOME: ".gradle"
when:
- event: pull_request
build_project:
image: cimg/android:2023.09.1
commands:
- sudo chown -R circleci:circleci .
- ./gradlew assembleDebug
environment:
GRADLE_USER_HOME: ".gradle"
when:
- event: pull_request
notify:
image: alpine:3
commands:
- apk add curl
- "curl -d'Thumb-Key build ${CI_PIPELINE_STATUS}: ${CI_PIPELINE_URL}' ntfy.sh/thumbkey_ci"
when:
- event: pull_request
status: [failure, success]