Skip to content

Fix CI matrix

Fix CI matrix #31

Workflow file for this run

name: Windows
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
Windows-EXE:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- run: cmake -DTERMCOLOR_TESTS=ON .
- run: cmake --build .
- run: ./Debug/test_termcolor.exe
Windows-MinGW:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- run: cmake -DCMAKE_SH="CMAKE_SH-NOTFOUND" -DTERMCOLOR_TESTS=ON -G "MinGW Makefiles" .
- run: cmake --build .
- run: ./test_termcolor