From 59ecf93b9b7e046c8ae896a7c96130ea9260bedf Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Mon, 24 Jan 2022 21:13:45 +0100 Subject: [PATCH] github: add workflow to test on macos We have some users on macOS. builds.sr.ht does not support proprietary build images and will never do. Signed-off-by: Robin Jarry --- .github/workflows/macos.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/macos.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..19acb28 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,16 @@ +--- +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 ./...