Skip to content

Run tests on linux #131

Run tests on linux

Run tests on linux #131

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