Create ccpp.yml

For GitHub build
pull/102/head
dgtlrift 2020-01-10 08:16:15 -05:00 committed by GitHub
parent 18dc73d27e
commit d0e78245dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
.github/workflows/ccpp.yml vendored 100644
View File

@ -0,0 +1,17 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: make
run: cd src && make
- name: make check
run: make check
- name: make distcheck
run: make distcheck