aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-12-15 08:56:40 +0100
committerRobin Jarry <robin@jarry.cc>2023-12-15 09:58:29 +0100
commitbd29700e708de7f99b17744c2015debe17a0234b (patch)
tree41ec91e16d0a7cd526b825565c468d900241eed9 /.github
parent73bf7241e611ea28e7a58584341921d1262afaa1 (diff)
downloadaerc-bd29700e708de7f99b17744c2015debe17a0234b.tar.gz
aerc-bd29700e708de7f99b17744c2015debe17a0234b.zip
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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml8
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