Skip to content

fix typo

fix typo #3

Workflow file for this run

# Template: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml
name: Build On Windows
on:
push:
branches:
- thread-sorter
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Conan
run: |
pip install conan==2.6.0
conan profile detect
- name: Configure CMake
working-directory: ${{github.workspace}}
run: |
conan install . --build=missing
cmake --preset thread-sorter-default -DWITH_GTEST=ON
- name: Build Targets
working-directory: ${{github.workspace}}
run: cmake --build --preset thread-sorter-release
- name: Run Unit Test
working-directory: ${{github.workspace}}
run: |
cmake --build --preset thread-sorter-release -t tests
.\build\test\Release\gtest-testrun.exe