Skip to content

Cleanup std includes #53

Cleanup std includes

Cleanup std includes #53

Workflow file for this run

name: macOS
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
CMAKE_GENERATOR: Ninja
HOMEBREW_NO_INSTALL_CLEANUP: 1
jobs:
macos-12:
name: macOS 12
runs-on: macos-12
steps:
- name: Check out code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install ninja
run: brew install ninja
- name: Install conan
run: |
pip3 install "conan==1.61.0"
conan config init
conan config set general.revisions_enabled=1
- name: CMake config
run: cmake -S. -Bbuild -G Ninja -D CMAKE_BUILD_TYPE=Release
- name: CMake build
run: cmake --build build --config Release