diff options
author | Robin Jarry <robin@jarry.cc> | 2023-12-15 08:56:40 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-12-15 09:58:29 +0100 |
commit | bd29700e708de7f99b17744c2015debe17a0234b (patch) | |
tree | 41ec91e16d0a7cd526b825565c468d900241eed9 | |
parent | 73bf7241e611ea28e7a58584341921d1262afaa1 (diff) | |
download | aerc-bd29700e708de7f99b17744c2015debe17a0234b.tar.gz |
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 <robin@jarry.cc>
-rw-r--r-- | .github/workflows/macos.yml | 8 |
1 files changed, 4 insertions, 4 deletions
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 |