Skip to content

Commit

Permalink
Fix #954 (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
DisposaBoy authored Dec 16, 2019
1 parent 5134a14 commit 2f9d925
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/gs-ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2f9d925

Please sign in to comment.