45a7d29b06
This is never tested. Let's check that it compiles at least. Signed-off-by: Robin Jarry <robin@jarry.cc>
17 lines
337 B
YAML
17 lines
337 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 notmuch scdoc
|
|
- run: make
|
|
- run: make install
|
|
- run: make checkinstall
|
|
- run: go test ./...
|