Fixed build and tests

This commit is contained in:
Marc Ole Bulling
2021-12-10 19:06:59 +01:00
parent cbbbef41c5
commit 2d892912eb
4 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.16.4'
go-version: '^1.17'
- run: go test ./... -parallel 8 --tags=test,awsmock
- run: go clean -testcache
- run: go test ./... -parallel 8 --tags=test,noaws

View File

@@ -1,4 +1,4 @@
FROM golang:1.16.6 AS build_base
FROM golang:1.17 AS build_base
## Usage:
## docker build . -t gokapi

View File

@@ -1,4 +1,4 @@
FROM golang:1.16.6
FROM golang:1.17
## To compile:
## cd Gokapi/build/

View File

@@ -1,6 +1,6 @@
module Gokapi
go 1.16
go 1.17
require (
github.com/aws/aws-sdk-go v1.38.36