diff options
author | Markus Wüstenberg | 2021-05-07 14:35:47 +0200 |
---|---|---|
committer | GitHub | 2021-05-07 14:35:47 +0200 |
commit | d34b28be56b83a867343b5249f9a6c545ef3501d (patch) | |
tree | 22e7e88ee4c9713c8601d34b95d9034b917074eb /.github | |
parent | e6538392adde56d28f33a3619066aeffce18c1d2 (diff) | |
download | gomponents-d34b28be56b83a867343b5249f9a6c545ef3501d.tar.lz gomponents-d34b28be56b83a867343b5249f9a6c545ef3501d.tar.zst gomponents-d34b28be56b83a867343b5249f9a6c545ef3501d.zip |
Bump Go version to 1.16 in CI (#72)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/go.yml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4c541ea..1f74973 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,20 +11,19 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - name: Set up Go 1.x - uses: actions/setup-go@v2 - with: - go-version: ^1.15 - id: go - - name: Check out uses: actions/checkout@v2 + - name: Setup Go + uses: actions/setup-go@v2 + with: + go-version: ^1.16 + - name: Get dependencies run: go get -v -t -d ./... - name: Build - run: go build -v . + run: go build -v ./... - name: Test run: go test -v -coverprofile=coverage.txt ./... @@ -42,4 +41,4 @@ jobs: - name: Lint uses: golangci/golangci-lint-action@v2 with: - version: v1.30 + version: latest |