Skip to content

Commit 697298c

Browse files
authored
Create ccpp.yml
1 parent b7dfa0a commit 697298c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ccpp.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+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v1
18+
- name: install deps
19+
run: |
20+
apt-get libssl-dev sqlite3 cmake
21+
- name: cmake
22+
run: cmake
23+
- name: make
24+
run: make
25+
- name: make check
26+
run: make check
27+
- name: make distcheck
28+
run: make distcheck

0 commit comments

Comments
 (0)