Enable warnings on the example target and fix one #68
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: CI MacOS Clang | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: # Enable manual trigger | |
| jobs: | |
| call-build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| cpp_std: ["17", "23"] | |
| uses: ./.github/workflows/_build_template.yml | |
| with: | |
| os: macos-latest | |
| compiler: clang | |
| cxx: clang++ | |
| cc: clang | |
| cpp_std: ${{ matrix.cpp_std }} | |
| # Apple clang doesn't support modules yet. We could install LLVM clang, but we have ubuntu to test that. |