Update ccpp.yml

This commit is contained in:
Benjamin Kyd
2019-10-07 20:01:01 +01:00
committed by GitHub
parent 7609faffb8
commit 81d453eca0

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

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