Skip to content

Commit 0020b15

Browse files
committed
Add github CI
1 parent 5cfb27d commit 0020b15

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: CI
3+
4+
on:
5+
push:
6+
branches:
7+
- master
8+
- 0.6.x
9+
pull_request:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Setup
19+
run: |
20+
sudo apt-get install cmake
21+
- name: Build
22+
run: |
23+
mkdir build
24+
cd build
25+
cmake -DDEBIAN=1 -DMULTI_SEMANTICS=1 ..
26+
make
27+
- name: Test
28+
run: |
29+
make test

0 commit comments

Comments
 (0)