Create c-cpp.yml

This commit is contained in:
Serge Lamikhov-Center 2020-08-24 22:03:23 +03:00 committed by GitHub
parent e18e5bc261
commit 320e33b0f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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