Skip to content

Commit

Permalink
We don't need to support so many versions!
Browse files Browse the repository at this point in the history
  • Loading branch information
newrelic-eheinlein authored Jul 16, 2020
1 parent 71a6e8a commit 7a481b1
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,12 @@ jobs:

go-otel-exporter:
runs-on: ubuntu-18.04
# env:
# # Required when using older versions of Go that do not support gomod.
# GOPATH: ${{ github.workspace }}

strategy:
# if one test fails, do not abort the rest
fail-fast: false
matrix:
include:
- go-version: 1.7.x
- go-version: 1.8.x
- go-version: 1.9.x
- go-version: 1.10.x
- go-version: 1.11.x
- go-version: 1.12.x
- go-version: 1.13.x
- go-version: 1.14.x
steps:
Expand All @@ -36,19 +27,11 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2

# - name: Get dependencies
# run: |
# go get -v -d ./...
# if [ -f Gopkg.toml ]; then
# curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
# dep ensure
# fi

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

- name: Vet
run: go vet -v ./...
run: go vet ./...

0 comments on commit 7a481b1

Please sign in to comment.