Skip to content

sync ftoa.cpp

sync ftoa.cpp #125

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-24.04, macos-15, windows-2022]
steps:
- uses: actions/checkout@v5
- run: cmake -S test -B build -DCMAKE_BUILD_TYPE=Debug
- run: cmake --build build --config Debug -j
# skip all float checks.
- run: ctest -E "^float-check" --test-dir build -C Debug --output-on-failure