Create c-cpp.yml

This commit is contained in:
Sami Samhuri 2022-02-21 19:38:29 -08:00 committed by GitHub
parent f3d6b44eff
commit 35eb04bafe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
.github/workflows/c-cpp.yml vendored Normal file
View file

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