Skip materializing parsed_number_string_t spans on the hot path (addresses #384) #436
Workflow file for this run
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: Ubuntu 24.04 CI | |
| on: [push, pull_request] | |
| jobs: | |
| ubuntu-build: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Use cmake | |
| run: | | |
| mkdir build && | |
| cd build && | |
| cmake -DFASTFLOAT_CXX_STANDARD=20 -DFASTFLOAT_TEST=ON -DCMAKE_INSTALL_PREFIX:PATH=destination .. && | |
| cmake --build . && | |
| ctest --output-on-failure && | |
| cmake --install . |