Files
starter-workflows/ci/c-cpp.yml
T
Reini Urban 8ac773646a Update c-cpp.yml for configure/automake
make test is a perl'ism (and probably other), autotools use make check.
add make distcheck
2019-08-14 11:37:22 +02:00

20 lines
318 B
YAML

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