aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
blob: e1e986fbb15c52aa221d75d8870787fc449502f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Go
on: 
  - push
  - pull_request
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
    - name: Set up Go 1.14
      uses: actions/setup-go@v1
      with:
        go-version: 1.14
      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