From b3771c94911f48388fc501fbaffc7bc20e558c4f Mon Sep 17 00:00:00 2001 From: Otavio Pontes Date: Tue, 19 Nov 2019 10:16:55 -0800 Subject: [PATCH] actions: Test make distcheck on github actions Distcheck is light now, so adding it to github actions to make sure we aren't breaking the build on a dist package Signed-off-by: Otavio Pontes --- .github/workflows/ccpp.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 516c829a..f6c6b3a1 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -23,6 +23,9 @@ jobs: - name: run unit tests run: make check + - name: run distcheck + run: make distcheck + - name: print status if: failure() run: cat test-suite.log