Add Github Actions CI build

This commit is contained in:
Michael Hansen
2019-10-04 11:12:28 -07:00
parent 154b80b2fe
commit fc1cb06926

14
.github/workflows/linux-ci.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: Linux-CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build and Test
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make -j2
make check