Skip to content

feat: zero relocation string containers #9

feat: zero relocation string containers

feat: zero relocation string containers #9

Workflow file for this run

name: OSX
on:
push:
pull_request:
jobs:
build_frozen:
runs-on: macOS-latest
strategy:
fail-fast: false
matrix:
cmake_args:
- ""
cxxstandard:
- 14
- 17
- 2a
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Configure
env:
CXXFLAGS: -std=c++${{matrix.cxxstandard}} -fdiagnostics-color=always
run: cmake -DCMAKE_BUILD_TYPE=DEBUG "-Dfrozen.coverage=ON" -DCMAKE_VERBOSE_MAKEFILE=ON -B build -S .
- name: Build
run: cmake --build build
- name: Test
run: cmake --build build --target test