Create ccpp.yml

This commit is contained in:
Nielsbishere 2019-12-04 14:18:26 +01:00 committed by GitHub
parent 00dc8ed557
commit fb870c2551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/ccpp.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: make install
run: make install --directory example
- name: make
run: make --directory example
- name: check
run: make check --directory example
- name: distcheck
run: make distcheck --directory example