From bd29700e708de7f99b17744c2015debe17a0234b Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Fri, 15 Dec 2023 08:56:40 +0100 Subject: ci: fix build and test on macos Even if macos has GNU make, the gmake command is not available. Fixes: 73bf7241e611 ("lint,validate: fix for openbsd") Signed-off-by: Robin Jarry --- .github/workflows/macos.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.github') diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index ee89b9c3..52559861 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 - run: brew install gnupg notmuch scdoc - - run: gmake - - run: gmake install - - run: gmake checkinstall - - run: go test ./... + - run: make + - run: make install + - run: make checkinstall + - run: make tests -- cgit