Skip to content

version 7.0.0

version 7.0.0 #467

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
cxxflags: ["", "-Ofast -ffast-math"]
steps:
- uses: actions/checkout@v1
- name: cmake
run: cmake .
env:
CXXFLAGS: ${{ matrix.cxxflags }}
- name: cmake build
run: cmake --build .
- name: ctest
run: ctest
env:
CTEST_OUTPUT_ON_FAILURE: 1
- name: cmake install
run: cmake --install . --prefix $PWD/install