Add noexcept on non-throwing methods identified by static analysis. #150
This file contains 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 for iOS | |
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: macOS-11 | |
strategy: | |
matrix: | |
config: [release, debug] | |
simulator: ["'iPhone 8'", "'iPad Air (3rd generation)'"] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
continue-on-error: true | |
- name: build | |
run: export IOS_DEPLOYMENT_TARGET=11.0 && ./build-tests-ios.sh ${{ matrix.config }} ${{ matrix.simulator }} |