Skip to content

[Refactor]: Add logcoe prefix in internal messages #28

[Refactor]: Add logcoe prefix in internal messages

[Refactor]: Add logcoe prefix in internal messages #28

Workflow file for this run

name: macOS
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
name: ${{ matrix.name }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
include:
- name: "macOS Clang"
compiler: clang
cmake-generator: 'Ninja'
cmake-options: ''
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install ninja-build
run: |
brew install ninja
shell: bash
- name: Configure CMake
run: |
cmake -B build -G "${{ matrix.cmake-generator }}" ${{ matrix.cmake-options }} -DLOGCOE_BUILD_TESTS=ON
shell: bash
- name: Build
run: |
cmake --build build --config Release
shell: bash
- name: Run tests
working-directory: build/tests
run: |
./logcoe_tests
shell: bash