Skip to content

Merge pull request #73 from uilianries/hotfix/include-optional #13

Merge pull request #73 from uilianries/hotfix/include-optional

Merge pull request #73 from uilianries/hotfix/include-optional #13

Workflow file for this run

#name: C/C++ CI
on: [push]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: mkdir build && cd build && cmake -DCMAKE_CXX_FLAGS="-Werror" ..
- name: build
run: cmake --build build
- name: test
run: cd build && ctest
build-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, windows-2016]
steps:
- uses: actions/checkout@v1
- name: configure
run: mkdir build && cd build && cmake ..
- name: build
run: cmake --build build --config Debug
- name: test
run: cd build && ctest -C Debug