Skip to content

Commit 87a134a

Browse files
authored
Create c-cpp.yml
1 parent 735fd96 commit 87a134a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/c-cpp.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: C/C++ CI
2+
3+
on:
4+
[push]
5+
6+
jobs:
7+
linux-build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: configure
14+
run: ./configure
15+
- name: make
16+
run: make
17+
18+
mac-build:
19+
20+
runs-on: macos-latest
21+
22+
steps:
23+
- uses: actions/checkout@v2
24+
- name: configure
25+
run: ./configure
26+
- name: make
27+
run: make
28+

0 commit comments

Comments
 (0)