Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server Github Actions 작성 #11

Merged
merged 7 commits into from
Sep 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Feat(#10: PR github Actions 작성
KIMSEI1124 committed Sep 9, 2024
commit f2ef2e532744c624668e428acc0fcc3843b50f2b
27 changes: 27 additions & 0 deletions .github/workflows/application-calendar-server-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: 🧪 Calendar Server Tests on Pull Request

on:
pull_request:
branches:
- main
- dev

jobs:
project-test:
runs-on: ubuntu-latest

steps:
- name: 📦 Checkout repository
uses: actions/checkout@v4

- name: 🏗️ Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'amazon-corretto'
java-version: '17'

- name: 🎟️ Grant execute permission for gradlew
run: chmod +x gradlew

- name: 🧪 Spring Boot Test
run: ./gradlew clean application:wypl-calendar:test
File renamed without changes.
27 changes: 27 additions & 0 deletions .github/workflows/application-notification-server-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: 🧪 Notification Server Tests on Pull Request

on:
pull_request:
branches:
- main
- dev

jobs:
project-test:
runs-on: ubuntu-latest

steps:
- name: 📦 Checkout repository
uses: actions/checkout@v4

- name: 🏗️ Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'amazon-corretto'
java-version: '21'

- name: 🎟️ Grant execute permission for gradlew
run: chmod +x gradlew

- name: 🧪 Spring Boot Test
run: ./gradlew clean application:wypl-notification:test