Add t35_identifier_length and move descr to hrsd #147
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: C/C++ CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: configure | |
| run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
| - name: build | |
| run: cmake --build build | |
| - name: test | |
| run: ./build/test/unit_tests --wait-for-keypress never -d yes | |
| macos: | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: configure | |
| run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
| - name: build | |
| run: cmake --build build | |
| - name: test | |
| run: ./build/test/unit_tests --wait-for-keypress never -d yes exclude:large_files | |
| windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: configure | |
| run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug | |
| - name: build | |
| run: cmake --build build --config Debug | |
| - name: test | |
| run: ./build/test/Debug/unit_tests --wait-for-keypress never -d yes exclude:large_files |