Skip to content

update gcd() in the math_functions.hpp #91

update gcd() in the math_functions.hpp

update gcd() in the math_functions.hpp #91

Workflow file for this run

name: Windows CI
on: [push, workflow_dispatch]
permissions:
contents: read
jobs:
windows-cmake-msvc:
name: test-msvc-on-windows
runs-on: windows-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: x64
- name: Run tests
run: |
cd .\tests
.\run_windows_msvc_tests.bat
windows-cmake-clang-cl:
name: test-clang-cl-on-windows
runs-on: windows-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: x64
- name: Run tests
run: |
cd .\tests
.\run_windows_clang_cl_tests.bat