Skip to content

move docs around, write a bit of README, new dockerfile for debian:te… #106

move docs around, write a bit of README, new dockerfile for debian:te…

move docs around, write a bit of README, new dockerfile for debian:te… #106

Workflow file for this run

name: C/C++ CI
on: [push, workflow_dispatch]
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