aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/macos.yml
blob: ee89b9c39d8fcb2b53a2acb5e2566b7168e488a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
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: gmake
      - run: gmake install
      - run: gmake checkinstall
      - run: go test ./...