Phase 5 COMPLETE: CI/CD, Documentation, Benchmarks #1
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: C++ CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: install dependencies | |
| run: | | |
| brew install glfw | |
| brew install grep | |
| - name: Build CLI | |
| run: make log_analyzer | |
| - name: Build Tests | |
| run: make build-tests | |
| - name: Run Tests | |
| run: make test | |
| - name: Build GUI | |
| run: make build-gui |