diff --git a/.github/workflows/gs-ci.yml b/.github/workflows/gs-ci.yml new file mode 100644 index 00000000..9e7266ff --- /dev/null +++ b/.github/workflows/gs-ci.yml @@ -0,0 +1,22 @@ +on: [push, pull_request] +name: margo-ci +jobs: + margo-ci: + strategy: + matrix: + go-version: [1.12.x, 1.13.x] + platform: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.platform }} + steps: + - name: Setup + uses: actions/setup-go@v1 + with: + go-version: ${{ matrix.go-version }} + - name: Checkout + uses: actions/checkout@v2 + with: + path: gs + - name: CI + env: + GOPATH: ${{ github.workspace }}/gs + run: go install -v gosublime/cmd/margo