We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3db276b commit dd70ec2Copy full SHA for dd70ec2
.github/workflows/ccpp.yml
@@ -0,0 +1,24 @@
1
+name: C/C++ CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: install dependencies
13
+ run: sudo apt install autopoint check intltool libexpat1-dev pkg-config
14
+ - name: configure
15
+ run: |
16
+ test -f config.rpath || touch config.rpath
17
+ sh ./autogen.sh
18
+ ./configure
19
+ - name: make
20
+ run: make
21
+ - name: make check
22
+ run: make check
23
+ - name: make distcheck
24
+ run: make distcheck
0 commit comments