Update ccpp.yml

This commit is contained in:
Recep Aslantas
2019-08-27 20:00:01 +03:00
committed by GitHub
parent 1d804781de
commit a450ab2d9c

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

@@ -0,0 +1,21 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: dependencies
run: sh ./build-deps.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck