refactor(client): 게임 타이머 값 config.h 에서 불러오게 수정 및 불필요한 로그 메시지 제거 #115
This file contains hidden or 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
| name: Build and Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install Dependencies | |
| run: sudo apt-get update && sudo apt-get install -y protobuf-c-compiler libprotobuf-c-dev libprotobuf-dev libncurses-dev | |
| - name: Run CMake | |
| run: | | |
| cmake -S . -B build | |
| cmake --build build -j 2 | |
| # - name: Run tests | |
| # run: | | |
| # cd build | |
| # ctest --output-on-failure |