Skip to content

Commit 8c7622a

Browse files
committed
ci: fix missing syntest flag
1 parent a02de55 commit 8c7622a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ jobs:
2222
go-version-file: 'go.mod'
2323

2424
- name: Go Test
25+
env:
26+
# Remove once this feature is stable in Go
27+
GOEXPERIMENT: synctest
2528
run: |
26-
go test -v ./...
29+
go test -v ./...
2730
2831
goreleaser:
2932
needs:

.github/workflows/test.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@ jobs:
2222
go-version-file: 'go.mod'
2323

2424
- name: Go Test
25+
env:
26+
# Remove once this feature is stable in Go
27+
GOEXPERIMENT: synctest
2528
run: |
2629
go test -v ./...

0 commit comments

Comments
 (0)