2022-01-24 20:13:45 +00:00
|
|
|
---
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
env:
|
|
|
|
DESTDIR: ./out
|
2022-04-14 19:28:18 +00:00
|
|
|
GOFLAGS: "-tags=notmuch"
|
2022-01-24 20:13:45 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-go@v2
|
2022-04-14 19:50:30 +00:00
|
|
|
- run: brew install gnupg notmuch scdoc
|
2022-01-24 20:13:45 +00:00
|
|
|
- run: make
|
|
|
|
- run: make install
|
|
|
|
- run: make checkinstall
|
|
|
|
- run: go test ./...
|