Skip to content

Fix windows

Fix windows #143

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: network
run: sudo apt install net-tools && ifconfig
- name: Run Tests
run: cd tests && ctest -VV