Create ccpp.yml

pull/607/head
srg74 2020-01-18 20:03:18 -05:00 zatwierdzone przez GitHub
rodzic 59fbc51283
commit 4d646e67f3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 19 dodań i 0 usunięć

19
.github/workflows/ccpp.yml vendored 100644
Wyświetl plik

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