all repos — gomponents @ d34b28be56b83a867343b5249f9a6c545ef3501d

HTML components in pure Go

Bump Go version to 1.16 in CI (#72)

Markus Wüstenberg markus@maragu.dk
Fri, 07 May 2021 14:35:47 +0200
commit

d34b28be56b83a867343b5249f9a6c545ef3501d

parent

e6538392adde56d28f33a3619066aeffce18c1d2

2 files changed, 8 insertions(+), 9 deletions(-)

jump to
M .github/workflows/go.yml.github/workflows/go.yml
@@ -11,20 +11,19 @@ build:     name: Build
     runs-on: ubuntu-latest
     steps:
-    - name: Set up Go 1.x
+    - name: Check out
+      uses: actions/checkout@v2
+
+    - name: Setup Go
       uses: actions/setup-go@v2
       with:
-        go-version: ^1.15
-      id: go
-
-    - name: Check out
-      uses: actions/checkout@v2
+        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 @@       - name: Lint
         uses: golangci/golangci-lint-action@v2
         with:
-          version: v1.30
+          version: latest
M MakefileMakefile
@@ -10,5 +10,5 @@ lint: 	golangci-lint run
 
 test:
-	go test -coverprofile=cover.out -mod=readonly ./...
+	go test -coverprofile=cover.out ./...