This repository was archived by the owner on Apr 29, 2026. It is now read-only.
Add Go game modules and simulation files for 9x9 and 19x19 boards #142
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: test (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure | |
| run: cmake -S test -B build_test_ci -DCMAKE_BUILD_TYPE=Debug | |
| - name: Build | |
| run: cmake --build build_test_ci --config Debug -j 2 | |
| - name: Test | |
| run: ctest --test-dir build_test_ci --output-on-failure --build-config Debug | |