Clean up lib\include\mat\json.hpp and update Private Modules Commit ID. #1192
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 Ubuntu 18:04 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| - dev | |
| - dev/* | |
| - release/* | |
| - buildme/* | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| - dev | |
| schedule: | |
| - cron: 0 2 * * 1-5 | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| config: [release, debug] | |
| os: [ubuntu-20.04] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v1 | |
| continue-on-error: true | |
| - name: Test ${{ matrix.os }} ${{ matrix.config }} | |
| run: ./build-tests.sh ${{ matrix.config }} |