-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
58 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
name: SidePeek CI with Gradle | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
- 'feat/**' | ||
- 'fix/**' | ||
- 'refactor/**' | ||
- 'chore/**' | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
- 'feat/**' | ||
- 'fix/**' | ||
- 'refactor/**' | ||
- 'chore/**' | ||
|
||
permissions: | ||
contents: read | ||
checks: write | ||
pull-requests: write | ||
contents: read | ||
checks: write | ||
pull-requests: write | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
redis: | ||
|
@@ -27,55 +26,55 @@ jobs: | |
- ${{ secrets.TEST_REDIS_PORT }}:6379 | ||
options: --entrypoint redis-server | ||
|
||
steps: | ||
- name: Repository Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.ACTION_TOKEN }} | ||
submodules: true | ||
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 JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- 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: 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: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Build with Gradle | ||
run: ./gradlew build | ||
- name: Build with Gradle | ||
run: ./gradlew build | ||
|
||
- name: Test Jacoco Coverage Report | ||
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 Jacoco Coverage Report | ||
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 | ||
uses: lcollins/[email protected] | ||
with: | ||
path: '**/build/reports/checkstyle/**.xml' | ||
title: 📝 Checkstyle report | ||
- name: Test Checkstyle Report | ||
uses: lcollins/[email protected] | ||
with: | ||
path: '**/build/reports/checkstyle/**.xml' | ||
title: 📝 Checkstyle report | ||
|
||
- name: Send Slack Notification | ||
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 }} | ||
if: always() | ||
- name: Send Slack Notification | ||
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 }} | ||
if: always() |