Skip to content

Attempt to compile on other platforms #14

Attempt to compile on other platforms

Attempt to compile on other platforms #14

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
name: Checkout
- name: Build & Test
uses: ashutoshvarma/action-cmake-build@master
with:
build-dir: ${{ runner.workspace }}/build
build-type: Release
configure-options: -DCMAKE_CXX_FLAGS="-std=c++17"
run-test: true