Created
September 11, 2025 17:31
-
-
Save mr-yoo/dae6df49ce2c800e5c5aeed6c71764a6 to your computer and use it in GitHub Desktop.
Github Action Example
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: The-First-CI | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug | |
- run: cmake --build build --parallel | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug | |
- run: cmake --build build --parallel | |
- run: ctest --test-dir build --output-on-failure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment