From 54946e7dd189fd33c964b7f7cada7154ad91acda Mon Sep 17 00:00:00 2001 From: Aleix Penella Date: Sat, 9 Dec 2023 15:35:54 +0100 Subject: [PATCH] in gh action use make to run test --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fc93b7f1..a1225674 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,8 +31,8 @@ jobs: - name: Run unit tests run: | - make unit-test + make unit-tests - name: Run functional tests run: | - make functional-test + make functional-tests