We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cfb27d commit 0020b15Copy full SHA for 0020b15
1 file changed
.github/workflows/ci.yml
@@ -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
11
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
23
+ mkdir build
24
+ cd build
25
+ cmake -DDEBIAN=1 -DMULTI_SEMANTICS=1 ..
26
+ make
27
+ - name: Test
28
29
+ make test
0 commit comments