Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite87d61a

Browse files
committed
Misc fixes for release
1 parent43abf8e commite87d61a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

‎.github/workflows/ci.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on:ubuntu-latest
1010
steps:
1111
-uses:actions/checkout@v4
12-
-uses:actions/setup-go@v4
12+
-uses:actions/setup-go@v5
1313
with:
1414
go-version-file:./go.mod
1515
-run:./ci/fmt.sh
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
-uses:actions/checkout@v4
2121
-run:go version
22-
-uses:actions/setup-go@v4
22+
-uses:actions/setup-go@v5
2323
with:
2424
go-version-file:./go.mod
2525
-run:./ci/lint.sh
@@ -28,7 +28,7 @@ jobs:
2828
runs-on:ubuntu-latest
2929
steps:
3030
-uses:actions/checkout@v4
31-
-uses:actions/setup-go@v4
31+
-uses:actions/setup-go@v5
3232
with:
3333
go-version-file:./go.mod
3434
-run:./ci/test.sh
@@ -41,7 +41,7 @@ jobs:
4141
runs-on:ubuntu-latest
4242
steps:
4343
-uses:actions/checkout@v4
44-
-uses:actions/setup-go@v4
44+
-uses:actions/setup-go@v5
4545
with:
4646
go-version-file:./go.mod
4747
-run:./ci/bench.sh

‎.github/workflows/daily.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
runs-on:ubuntu-latest
1313
steps:
1414
-uses:actions/checkout@v4
15-
-uses:actions/setup-go@v4
15+
-uses:actions/setup-go@v5
1616
with:
1717
go-version-file:./go.mod
1818
-run:AUTOBAHN=1 ./ci/bench.sh
1919
test:
2020
runs-on:ubuntu-latest
2121
steps:
2222
-uses:actions/checkout@v4
23-
-uses:actions/setup-go@v4
23+
-uses:actions/setup-go@v5
2424
with:
2525
go-version-file:./go.mod
2626
-run:AUTOBAHN=1 ./ci/test.sh
@@ -34,7 +34,7 @@ jobs:
3434
-uses:actions/checkout@v4
3535
with:
3636
ref:dev
37-
-uses:actions/setup-go@v4
37+
-uses:actions/setup-go@v5
3838
with:
3939
go-version-file:./go.mod
4040
-run:AUTOBAHN=1 ./ci/bench.sh
@@ -44,7 +44,7 @@ jobs:
4444
-uses:actions/checkout@v4
4545
with:
4646
ref:dev
47-
-uses:actions/setup-go@v4
47+
-uses:actions/setup-go@v5
4848
with:
4949
go-version-file:./go.mod
5050
-run:AUTOBAHN=1 ./ci/test.sh

‎close.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func (c *Conn) Close(code StatusCode, reason string) (err error) {
131131
// CloseNow closes the WebSocket connection without attempting a close handshake.
132132
// Use when you do not want the overhead of the close handshake.
133133
func (c*Conn)CloseNow() (errerror) {
134-
defererrd.Wrap(&err,"failed to close WebSocket")
134+
defererrd.Wrap(&err,"failed toimmediatelyclose WebSocket")
135135

136136
if!c.casClosing() {
137137
err=c.waitGoroutines()

‎conn_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ func TestConn(t *testing.T) {
346346
funcTestWasm(t*testing.T) {
347347
t.Parallel()
348348
ifos.Getenv("CI")=="" {
349-
t.Skip()
349+
t.SkipNow()
350350
}
351351

352352
s:=httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter,r*http.Request) {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp