Skip to content

Commit

Permalink
fix: 파이프라인 구축
Browse files Browse the repository at this point in the history
  • Loading branch information
KangJiSseok committed Mar 11, 2024
1 parent 6f80d48 commit 86461d8
Show file tree
Hide file tree
Showing 4 changed files with 314 additions and 312 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ jobs:
java-version: '17'
distribution: 'corretto'

- name: Add executable permission to gradlew
run: cd ./Backend && chmod +x ./gradlew
- name: Grant execute permission for gradlew
working-directory: ./Backend
run: chmod +x ./gradlew
shell: bash

- name: Build Project and Test
run: cd ./Backend && ./gradlew build test
working-directory: ./Backend
run: ./gradlew build test

- name: Setup MySQL
uses: mirromutth/[email protected]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package springwebsocket.webchat;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.web.WebAppConfiguration;

@SpringBootTest
@WebAppConfiguration
class WebChatApplicationTests {

@Test
void contextLoads() {
}

}
//package springwebsocket.webchat;
//
//import org.junit.jupiter.api.Test;
//import org.springframework.boot.test.context.SpringBootTest;
//import org.springframework.test.context.web.WebAppConfiguration;
//
//@SpringBootTest
//@WebAppConfiguration
//class WebChatApplicationTests {
//
// @Test
// void contextLoads() {
// }
//
//}
Loading

0 comments on commit 86461d8

Please sign in to comment.