-
Notifications
You must be signed in to change notification settings - Fork 1
92 lines (75 loc) · 2.07 KB
/
test.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Test
on:
pull_request:
branches:
- main
- develop
- feature/*
paths-ignore:
- README.md
permissions:
contents: read
actions: read
jobs:
dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
api_key: ${{ secrets.API_KEY }}
- name: Slack notify
uses: ./.github/actions/incoming-webhook
with:
incoming_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
test-prod:
needs: dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
api_key: ${{ secrets.API_KEY }}
- name: ktlint-check
run: ./gradlew --continue ktlintCheck
- name: Test ProdDebug
run: ./gradlew testProdDebugUnitTest
- name: Report jacoco
run: ./gradlew jacocoTestReport
- name: jacoco-report to zip
run: zip -r jacocoTestReport.zip ./build/reports/jacoco/jacocoTestReport/html
- name: Archive jacoco report
uses: actions/upload-artifact@v4
with:
name: jacocoTestReport
path: ./build/reports/jacoco/jacocoTestReport/html
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Danger
uses: MeilCli/danger-action@v5
with:
plugins_file: Gemfile
install_path: vendor/bundle
danger_file: Dangerfile
danger_id: danger-pr
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
compile-mock:
needs: dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
api_key: ${{ secrets.API_KEY }}
- name: Compile MockDebug
run: ./gradlew compileMockDebugSource