Skip to content

Commit

Permalink
Merge pull request #262 from k1LoW/bump-up-go-version
Browse files Browse the repository at this point in the history
Bump up go version
  • Loading branch information
k1LoW authored Nov 5, 2020
2 parents fbd30a2 + beea4b0 commit a944267
Show file tree
Hide file tree
Showing 3 changed files with 263 additions and 177 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
go_version: [1.13, 1.14]
go_version: [1.14, 1.15]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go ${{ matrix.go_version }} on ${{ matrix.platform }}
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
id: go

- name: Install packages
run: |
Expand All @@ -45,16 +44,13 @@ jobs:
sleep 20s
- name: Run tests
run: env PATH=`go env GOPATH`/bin:$PATH make ci
run: make ci
env:
DEBUG: "true"
GOPROXY: "https://proxy.golang.org"

- name: Run BigQuery integration
run: env PATH=`go env GOPATH`/bin:$PATH make test_bigquery
run: make test_bigquery
if: github.ref == 'refs/heads/master'
env:
GOPROXY: "https://proxy.golang.org"

- name: Run codecov
run: codecov
Expand All @@ -65,14 +61,13 @@ jobs:
strategy:
matrix:
platform: [windows-latest]
go_version: [1.14]
go_version: [1.15]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go ${{ matrix.go_version }} on ${{ matrix.platform }}
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
id: go

- name: Install packages
run: |
Expand All @@ -91,11 +86,7 @@ jobs:

- name: Run tests
run: |
go env GOPATH
export PATH=/c/Users/runneradmin/go/bin:$PATH
echo $PATH
make ci_windows
shell: bash
env:
DEBUG: "true"
GOPROXY: "https://proxy.golang.org"
47 changes: 17 additions & 30 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,44 +1,31 @@
module github.com/k1LoW/tbls

go 1.15

require (
cloud.google.com/go/bigquery v1.9.0
cloud.google.com/go/spanner v1.7.0
github.com/antonmedv/expr v1.8.8
github.com/aws/aws-sdk-go v1.33.3
cloud.google.com/go/bigquery v1.13.0
cloud.google.com/go/spanner v1.11.0
github.com/antonmedv/expr v1.8.9
github.com/aws/aws-sdk-go v1.35.21
github.com/beta/freetype v0.0.1
github.com/denisenkom/go-mssqldb v0.0.0-20200620013148-b91950f658ec
github.com/fatih/color v1.9.0 // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20201105052611-0f236ab67f08
github.com/go-sql-driver/mysql v1.5.0
github.com/gobuffalo/packr/v2 v2.8.0
github.com/goccy/go-graphviz v0.0.6
github.com/goccy/go-yaml v1.7.18
github.com/google/go-cmp v0.5.0
github.com/goccy/go-graphviz v0.0.8
github.com/goccy/go-yaml v1.8.3
github.com/google/go-cmp v0.5.2
github.com/k1LoW/ffff v0.1.1
github.com/karrick/godirwalk v1.15.6 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/labstack/gommon v0.3.0
github.com/lib/pq v1.7.0
github.com/lib/pq v1.8.0
github.com/loadoff/excl v0.0.0-20171207172601-c6a9e4c4b4c4
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-runewidth v0.0.9
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/minio/minio v0.0.0-20200707152854-14885ef98d83
github.com/mattn/go-sqlite3 v1.14.4
github.com/minio/minio v0.0.0-20201104210605-71753e21e0d7
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/spf13/cobra v1.0.1-0.20200710123203-207dc47664b4
github.com/spf13/pflag v1.0.5 // indirect
github.com/xo/dburl v0.0.0-20200124232849-e9ec94f52bc3
go.opencensus.io v0.22.4 // indirect
golang.org/x/crypto v0.0.0-20200707235045-ab33eee955e0 // indirect
golang.org/x/image v0.0.0-20200618115811-c13761719519
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/tools v0.0.0-20200708003708-134513de8882 // indirect
google.golang.org/api v0.28.0
google.golang.org/genproto v0.0.0-20200708133552-18036109789b // indirect
google.golang.org/grpc v1.30.0 // indirect
github.com/spf13/cobra v1.1.1
github.com/xo/dburl v0.0.0-20200910011426-652e0d5720a3
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5
google.golang.org/api v0.34.0
)

go 1.13
Loading

0 comments on commit a944267

Please sign in to comment.