We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a54a88a commit 55fb98eCopy full SHA for 55fb98e
.github/workflows/ci.yml
@@ -0,0 +1,37 @@
1
+name: CI
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ build-linux-gcc:
6
+ runs-on: ubuntu-18.04
7
+ steps:
8
+ - uses: actions/checkout@v1
9
+ - name: build all and examples
10
+ run: |
11
+ make -k
12
+ ./test
13
+ env:
14
+ CC: gcc
15
+ CXX: g++
16
+ build-linux-clang:
17
18
19
20
21
22
23
24
+ CC: clang
25
+ CXX: clang++
26
+ build-macos:
27
+ runs-on: macOS-latest
28
29
30
31
32
33
34
35
36
37
+# TODO: there is not build for Windows
0 commit comments