Skip to content

Remove temporary workaround from the previous change, now that the is… #667

Remove temporary workaround from the previous change, now that the is…

Remove temporary workaround from the previous change, now that the is… #667

Workflow file for this run

# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
name: CMakeTest
on: [push, workflow_dispatch]
jobs:
cmake_test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake .
- name: Build
run: cmake --build . -j4
- name: Test
run: ctest -j4