Skip to content

Reduced workflow to windows build #115

Reduced workflow to windows build

Reduced workflow to windows build #115

Workflow file for this run

# This workflow will run the tests on the C++ version of tictactoe
name: C++
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./tictactoe_cpp
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Prepare cmake
run: |
cmake -S . -B build
- name: Build
run: |
cmake --build build
- name: Test
run: |
cd build && ctest