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