Create c-cpp.yml

Added Github Action - Make Workflow

Build and test a C/C++ project using Make.
pull/1126/head
nightwalker-87 2021-03-21 14:58:45 +01:00 zatwierdzone przez GitHub
rodzic ab6094a615
commit 812bc6ed4f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 23 dodań i 0 usunięć

23
.github/workflows/c-cpp.yml vendored 100644
Wyświetl plik

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