Create c-cpp.yml

pull/668/head
Michael Black 2021-04-14 13:18:24 -05:00 zatwierdzone przez GitHub
rodzic af49370709
commit ef60efe890
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: [ 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 check
run: make check
- name: make distcheck
run: make distcheck