Skip to content

Commit f91c1b2

Browse files
benoit-atcarmet
authored andcommitted
create first revision
(cherry picked from commit b8c3293)
1 parent d2ea6e0 commit f91c1b2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ccpp.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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@v1
12+
- name: autogen
13+
run: ./autogen.sh
14+
- name: configure
15+
run: ./configure
16+
- name: make
17+
run: make
18+
- name: make check
19+
run: make check
20+
- name: make test
21+
run: make test

0 commit comments

Comments
 (0)