aerc/.github/workflows/macos.yml
Robin Jarry ba892d7769 builds: add gnupg in preparation of gpg integration
This is required for future gpg unit tests to run.

Signed-off-by: Robin Jarry <robin@jarry.cc>
2022-04-14 21:51:09 +02:00

18 lines
343 B
YAML

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