fix: 타이머 표시 정밀도 향상 및 서버 측 시간 관리 오류 수정 #116
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 |