all repos — gomponents @ 44c274483724ae6771544d805d13124b1f5fb84c

HTML components in pure Go

Test using Go 1.17 (#91)

Also set the new `-shuffle` flag when testing.
Markus Wüstenberg markus@maragu.dk
Wed, 06 Oct 2021 20:51:31 +0200
commit

44c274483724ae6771544d805d13124b1f5fb84c

parent

4858e5d47d5bed0221a19ab46af306b8eab5935d

2 files changed, 3 insertions(+), 6 deletions(-)

jump to
M .github/workflows/go.yml.github/workflows/go.yml
@@ -17,16 +17,13 @@     - name: Setup Go
       uses: actions/setup-go@v2
       with:
-        go-version: ^1.16
-
-    - name: Get dependencies
-      run: go get -v -t -d ./...
+        go-version: ^1.17
 
     - name: Build
       run: go build -v ./...
 
     - name: Test
-      run: go test -v -coverprofile=coverage.txt ./...
+      run: go test -v -coverprofile=coverage.txt -shuffle on ./...
 
     - name: Coverage
       uses: codecov/codecov-action@v1.0.13
M MakefileMakefile
@@ -10,5 +10,5 @@ lint: 	golangci-lint run
 
 test:
-	go test -coverprofile=cover.out ./...
+	go test -coverprofile=cover.out -shuffle on ./...