-
Notifications
You must be signed in to change notification settings - Fork 1
90 lines (76 loc) · 3.06 KB
/
ci.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
name: SidePeek CI with Gradle
on:
pull_request:
branches:
- main
- dev
permissions:
contents: read
checks: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
redis-version: [ latest ]
env:
APPLICATION: ${{ github.ref == 'refs/heads/main' && secrets.PROD_APPLICATION || secrets.DEV_APPLICATION }}
steps:
- name: Repository Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.ACTION_TOKEN }}
submodules: true
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
- name: Set up Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
redis-port: ${{ secrets.TEST_REDIS_PORT }}
- name: Set up MySQL
uses: samin/[email protected]
with:
mysql user: ${{ secrets.TEST_DB_USER }}
mysql password: ${{ secrets.TEST_DB_PASSWORD }}
mysql database: ${{ secrets.TEST_DB }}
host port: ${{ secrets.TEST_DB_PORT }}
- name: create applications.yml
shell: bash
run: |
touch ./src/main/resources/application.yml
echo "$APPLICATION" >> ./src/main/resources/application.yml
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
# CI
- name: Test Jacoco Coverage Report
if: github.event_name == 'pull_request'
id: jacoco
uses: madrapps/[email protected]
with:
title: 📝 Jacoco Test Coverage
paths: ${{ github.workspace }}/build/reports/jacoco/test/jacocoTestReport.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 80
min-coverage-changed-files: 80
- name: Test Checkstyle Report
if: github.event_name == 'pull_request'
uses: lcollins/[email protected]
with:
path: '**/build/reports/checkstyle/**.xml'
title: 📝 Checkstyle report
- name: Send Slack Notification
if: github.event_name == 'pull_request'
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
author_name: Github Action Test
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}