Skip to content

Streamline cross-platform kata setup #61

Streamline cross-platform kata setup

Streamline cross-platform kata setup #61

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Check formatting
run: make format-check
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
GTEST_COLOR: "1"
steps:
- uses: actions/checkout@v7
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build --config Debug
- name: Test
run: ctest --test-dir build --build-config Debug --output-on-failure