aerc/.github/workflows/macos.yml
Robin Jarry 59ecf93b9b github: add workflow to test on macos
We have some users on macOS. builds.sr.ht does not support proprietary
build images and will never do.

Signed-off-by: Robin Jarry <robin@jarry.cc>
2022-01-25 09:35:08 +01:00

17 lines
298 B
YAML

---
on: push
jobs:
macos:
runs-on: macos-latest
env:
DESTDIR: ./out
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- run: brew install scdoc
- run: make
- run: make install
- run: make checkinstall
- run: go test ./...