Skip to content

Commit

Permalink
github action test
Browse files Browse the repository at this point in the history
  • Loading branch information
haelime committed Mar 22, 2024
1 parent 218ad66 commit e5af869
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ jobs:
- name: Run server tests
run: |
./ircserv 6667 1234
(./ircserv 6667 1234 &) && (./testClient)
timeout-minutes: 3 # 3분 타임아웃 설정


test-client:
needs: [build-test, test-server]
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up client environment
run: |
make
# 클라이언트를 실행하기 위한 설정
# 예: 클라이언트를 빌드하고 실행하는 스크립트 실행
- name: Run client tests
run: |
./testClient
# 클라이언트 테스트 실행
# test-client:
# needs: [build-test, test-server]
# runs-on: macos-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2

# - name: Set up client environment
# run: |
# make
# # 클라이언트를 실행하기 위한 설정
# # 예: 클라이언트를 빌드하고 실행하는 스크립트 실행

# - name: Run client tests
# run: |
# ./testClient
# # 클라이언트 테스트 실행

0 comments on commit e5af869

Please sign in to comment.