Skip to content

Commit ffe0d76

Browse files
authored
Create ccpp.yml
1 parent f2db7cd commit ffe0d76

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ccpp.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: C/C++ CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: install_dep
13+
run: sudo apt install libbsd-dev
14+
- name: autogen
15+
run: ./autogen.sh
16+
- name: configure
17+
run: ./configure
18+
- name: make
19+
run: make
20+
- name: make install
21+
run: sudo make install
22+
- name: make distclean
23+
run: make distclean
24+

0 commit comments

Comments
 (0)