Skip to content

Reformat and add some missing files #125

Reformat and add some missing files

Reformat and add some missing files #125

Workflow file for this run

name: C/C++ CI
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: cmake configure
run: cmake .
- name: cmake build
run: cmake --build .
linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: cmake configure
run: cmake .
- name: cmake build
run: cmake --build .
- name: Run Tests
run: cd tests && ctest --output-on-failure