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.
2 parents b9d037d + 18cc951 commit 89d6c04Copy full SHA for 89d6c04
.github/workflows/test.yml
@@ -18,7 +18,7 @@ jobs:
18
strategy:
19
matrix:
20
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
21
- os: [ ubuntu-latest, macos-latest ]
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
22
experimental: [false]
23
runs-on: ${{ matrix.os }}
24
continue-on-error: ${{ matrix.experimental }}
test/net/imap/test_imap.rb
@@ -102,6 +102,8 @@ def test_imaps_post_connection_check
102
103
if defined?(OpenSSL::SSL)
104
def test_starttls_unknown_ca
105
+ omit "This test is not working with Windows" if RUBY_PLATFORM =~ /mswin|mingw/
106
+
107
imap = nil
108
assert_raise(OpenSSL::SSL::SSLError) do
109
ex = nil
0 commit comments