diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/macos.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 00000000..19acb282 --- /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 ./... |