Skip to content

Commit edd2170

Browse files
authored
Merge pull request #158 from jinghe-INTC/main
add a build action script
2 parents b6f5b4a + 1c4ff3f commit edd2170

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/c-cpp.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
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-20.04
20+
21+
steps:
22+
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
23+
- name: build
24+
run: make

0 commit comments

Comments
 (0)