Create ccpp.yml

This commit is contained in:
Nanang Izzuddin 2020-02-18 10:02:00 +07:00
parent c8927c65de
commit c6767aa854
1 changed files with 17 additions and 0 deletions

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

@ -0,0 +1,17 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
- name: make
run: make
- name: unit test
run: make selftest