Skip to content

Commit dd70ec2

Browse files
changwoowkpark
authored andcommitted
Add GitHub Actions file
1 parent 3db276b commit dd70ec2

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@v1
12+
- name: install dependencies
13+
run: sudo apt install autopoint check intltool libexpat1-dev pkg-config
14+
- name: configure
15+
run: |
16+
test -f config.rpath || touch config.rpath
17+
sh ./autogen.sh
18+
./configure
19+
- name: make
20+
run: make
21+
- name: make check
22+
run: make check
23+
- name: make distcheck
24+
run: make distcheck

0 commit comments

Comments
 (0)