59ecf93b9b
We have some users on macOS. builds.sr.ht does not support proprietary build images and will never do. Signed-off-by: Robin Jarry <robin@jarry.cc>
16 lines
298 B
YAML
16 lines
298 B
YAML
---
|
|
on: push
|
|
|
|
jobs:
|
|
macos:
|
|
runs-on: macos-latest
|
|
env:
|
|
DESTDIR: ./out
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
- run: brew install scdoc
|
|
- run: make
|
|
- run: make install
|
|
- run: make checkinstall
|
|
- run: go test ./...
|