Skip to content

Fix pair score being inverted #53

Fix pair score being inverted

Fix pair score being inverted #53

Workflow file for this run

name: CMake
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
BUILD_TYPE: Release
jobs:
build:
strategy:
matrix:
target: [ Win32, x64 ]
toolset: [ v143, ClangCL ]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DLIBHAT_SHARED_C_LIB=ON -A ${{matrix.target}} -T ${{matrix.toolset}}
- name: Build libhat.lib
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target libhat
- name: Build libhat_c.dll
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target libhat_c
# - name: Test
# working-directory: ${{github.workspace}}/build
# # Execute tests defined by the CMake configuration.
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
# run: ctest -C ${{env.BUILD_TYPE}}