We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53adea commit 80a6625Copy full SHA for 80a6625
.github/workflows/c-cpp.yml
@@ -0,0 +1,26 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+permissions:
10
+ actions: read
11
+ checks: read
12
+ contents: read
13
+ issues: write
14
+ pull-requests: write
15
16
+jobs:
17
+ build:
18
19
+ runs-on: ubuntu-latest
20
21
+ steps:
22
+ - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
23
+ - name: install ocaml
24
+ run: sudo apt-get install ocaml ocamlbuild
25
+ - name: build SDK
26
+ run: make preparation ; make sdk_install_pkg
0 commit comments