From 8ac773646a40800a8be7c472410a75183fcf7325 Mon Sep 17 00:00:00 2001 From: Reini Urban Date: Wed, 14 Aug 2019 11:37:22 +0200 Subject: [PATCH] Update c-cpp.yml for configure/automake make test is a perl'ism (and probably other), autotools use make check. add make distcheck --- ci/c-cpp.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/c-cpp.yml b/ci/c-cpp.yml index 399184e..e13511c 100644 --- a/ci/c-cpp.yml +++ b/ci/c-cpp.yml @@ -13,5 +13,7 @@ jobs: run: ./configure - name: make run: make - - name: make test - run: make test + - name: make check + run: make check + - name: make distcheck + run: make distcheck