Updated to C++23 and Clang-18 #53
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
submodules: true | |
- name: Install Clang 15 | |
run: | | |
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE | |
brew install --force llvm | |
- name: make | |
run: make OS=Github | |
- name: make test | |
run: make test OS=Github |