aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
blob: d2cfb0f77e0ef8fc15b53feb24efbb7b3e725263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Go
on: [push]
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
    - name: Set up Go 1.12
      uses: actions/setup-go@v1
      with:
        go-version: 1.12
      id: go
    - name: Check out code into the Go module directory
      uses: actions/checkout@v1
    - name: Test
      run: go test -v ./...
      env:
        GO111MODULE: on
        GOPROXY: https://cache.greedo.xeserv.us