From 2ace266d8304a25ff478bc9b96489c79e5e5794f Mon Sep 17 00:00:00 2001 From: Tzu-Mao Li Date: Mon, 8 Jan 2024 14:32:27 -0500 Subject: [PATCH] Update c-cpp.yml --- .github/workflows/c-cpp.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 937cb7e..c8c3e93 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -16,8 +16,6 @@ jobs: - name: configure run: mkdir build; cd build; cmake .. - name: make - run: make - - name: make check - run: make check - - name: make distcheck - run: make distcheck + run: cd build; make -j + - name: make test + run: cd build; make test