Add Github Actions CI build
This commit is contained in:
14
.github/workflows/linux-ci.yml
vendored
Normal file
14
.github/workflows/linux-ci.yml
vendored
Normal 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
|
Reference in New Issue
Block a user