Fix debug assert in Simple8b and Simple16 when input lenght is unknown (0) #158
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: Macos-CI | |
| on: [push, pull_request] | |
| jobs: | |
| macos-build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use cmake (default) | |
| run: | | |
| cmake -B build -D CMAKE_BUILD_TYPE=Release | |
| cmake --build build | |
| ctest --test-dir build --output-on-failure | |
| - name: Use cmake (debug) | |
| run: | | |
| cmake -B build -D CMAKE_BUILD_TYPE=Debug | |
| cmake --build build | |
| ctest --test-dir build --output-on-failure |