We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf46e73 commit e2c9643Copy full SHA for e2c9643
1 file changed
.github/workflows/c-cpp.yml
@@ -0,0 +1,22 @@
1
+name: C/C++ CI
2
+
3
4
+on:
5
+ push:
6
+ branches: [ master ]
7
+ pull_request:
8
9
10
+jobs:
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: apt
18
+ run: sudo apt-get install g++ cmake lcov
19
+ - name: submodule
20
+ run: git submodule update --init --recursive
21
+ - name: test
22
+ run: ./build.sh -t
0 commit comments