Skip to content

✅ Test more static traits #11

✅ Test more static traits

✅ Test more static traits #11

Workflow file for this run

on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
name: build
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: cmake
run: cmake -S . -B build -DCMAKE_INSTALL_PREFIX=${HOME}/local
- run: cmake --build build -j 2
- run: cmake --install build
- run: ctest --test-dir build -V -j 2