chore(ascii): add a cozy cat to guard our 31-digit precision and deve… #59
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows | |
| on: | |
| push: | |
| branches: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| jobs: | |
| msvc-scalar: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure | |
| run: cmake -S . -B build -DSIMD_F128_AVX2=OFF | |
| - name: Build | |
| run: cmake --build build --config Release | |
| - name: Run tests | |
| run: ctest --test-dir build -C Release --output-on-failure | |
| msvc-avx2: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure | |
| run: cmake -S . -B build_avx2 -DSIMD_F128_AVX2=ON | |
| - name: Build | |
| run: cmake --build build_avx2 --config Release | |
| - name: Run tests | |
| run: ctest --test-dir build_avx2 -C Release --output-on-failure |