Skip to content

Merge branch 'main' of https://github.com/TheNumbat/rpp #55

Merge branch 'main' of https://github.com/TheNumbat/rpp

Merge branch 'main' of https://github.com/TheNumbat/rpp #55

Workflow file for this run

name: macOS
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
build:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Clang 17
run: brew install llvm@17
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DRPP_TEST=ON
env:
CXX: /usr/local/opt/llvm@17/bin/clang++
- name: Build
run: cmake --build build -- -j
- name: Test
run: ctest --test-dir build --output-on-failure