Skip to content

Enable warnings on the example target and fix one #68

Enable warnings on the example target and fix one

Enable warnings on the example target and fix one #68

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.