We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d614747 commit 360d9c5Copy full SHA for 360d9c5
.github/workflows/test.yaml
@@ -19,6 +19,7 @@ jobs:
19
os:
20
- ubuntu
21
- macos
22
+ - windows
23
24
ruby:
25
- "3.2"
@@ -47,4 +48,4 @@ jobs:
47
48
49
- name: Run tests
50
timeout-minutes: 10
- run: bundle exec bake test
51
+ run: bundle exec sus --verbose
lib/io/stream/buffered.rb
@@ -106,7 +106,7 @@ def sysclose
106
end
107
108
109
- if RUBY_VERSION >= "3.3"
+ if RUBY_VERSION >= "3.3" and RUBY_PLATFORM !~ /win32|mswin|mingw/
110
def syswrite(buffer)
111
return @io.write(buffer)
112
0 commit comments