We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c5e260e + fb0a27d commit bbb9875Copy full SHA for bbb9875
1 file changed
.github/workflows/c-cpp.yml
@@ -0,0 +1,25 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: autoreconf
17
+ run: autoreconf -if
18
+ - name: configure
19
+ run: ./configure
20
+ - name: make
21
+ run: make
22
+ - name: make check
23
+ run: make check
24
+ - name: make distcheck
25
+ run: make distcheck
0 commit comments