Skip to content

Commit 895be63

Browse files
Remove GODEBUG setting for X.509 SHA-1 from tests
Merge pull request #229 from matthewhart-block/master
2 parents e556012 + 26a2ecc commit 895be63

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
run: go mod download
2323

2424
- name: Run tests
25-
run: GODEBUG=x509sha1=1 go test -v ./...
25+
run: go test -v ./...
2626

2727
- name: Build binaries
2828
run: go build -o . ./...
2929

3030
- name: Run integration tests
31-
run: GODEBUG=x509sha1=1 go test -v -tags=integration ./...
31+
run: go test -v -tags=integration ./...
3232

3333
lint:
3434
name: Lint
@@ -65,13 +65,11 @@ jobs:
6565

6666
- name: Run tests
6767
run: |
68-
set GODEBUG=x509sha1=1
6968
go test -v ./...
7069
7170
- name: Build binaries
7271
run: go build -o . ./...
7372

7473
- name: Run integration tests
7574
run: |
76-
set GODEBUG=x509sha1=1
7775
go test -v -tags=integration ./...

0 commit comments

Comments
 (0)