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 32dce45 commit 8e44a2fCopy full SHA for 8e44a2f
.github/workflows/c-cpp.yml
@@ -0,0 +1,24 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - name: configure
18
+ run: sudo apt-get update; sudo apt-get install -y musl-tools
19
+ - name: make
20
+ run: pwd;ls;make
21
+ - name: make check
22
+ run: make check
23
+ - name: make distcheck
24
+ run: make distcheck || true
Makefile
@@ -0,0 +1,8 @@
+all:
+ $(MAKE) -C cpp
+ $(MAKE) -C c
+ $(MAKE) -C js
+check:
+ $(MAKE) $@ -C cpp
+ $(MAKE) $@ -C c
0 commit comments