Skip to content

docs: document missing string operations (#50) #127

docs: document missing string operations (#50)

docs: document missing string operations (#50) #127

Workflow file for this run

name: macos
on:
pull_request:
paths-ignore:
- 'documentation/**'
- '.github/workflows/documentation.yml'
push:
paths-ignore:
- 'documentation/**'
- '.github/workflows/documentation.yml'
jobs:
build:
runs-on: ${{matrix.config.os}}
strategy:
fail-fast: false
matrix:
config:
- { os: macos-13 }
- { os: macos-14 }
- { os: macos-15 }
build: [ Debug, Release ]
name: "${{matrix.config.os}}:${{matrix.build}}"
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.build}}
- name: Build
run: cmake --build . --config ${{matrix.build}}
- name: Tests
run: ctest --output-on-failure -C ${{matrix.build}}