Add github action

Run make on ubuntu latest
This commit is contained in:
amai2012
2020-04-14 20:12:05 +02:00
committed by GitHub
parent bfbcc0333d
commit e120ee328e

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

@@ -0,0 +1,21 @@
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck