We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b09ab8a + 1e99a38 commit 3fb39c3Copy full SHA for 3fb39c3
.github/workflows/ci.yaml
@@ -14,9 +14,7 @@ jobs:
14
strategy:
15
matrix:
16
ruby-version:
17
- - '3.0'
18
- '3.1'
19
- - '3.2'
20
- '3.3'
21
test-suite:
22
- vmdb
Gemfile
@@ -1,7 +1,5 @@
1
-raise "Ruby versions < 3.0.1 are unsupported!" if RUBY_VERSION < "3.0.1"
2
-warn "Ruby versions >= 3.2.0 are untested!" if RUBY_VERSION >= "3.2.0"
3
-raise "Ruby versions >= 3.4.0 are unsupported!" if RUBY_VERSION >= "3.4.0"
4
-
+ruby ">= 3.1.1", "< 3.5.0"
+warn "Ruby versions >= 3.4.0 are untested!" if RUBY_VERSION >= "3.4.0"
5
source 'https://rubygems.org'
6
7
plugin "bundler-inject", "~> 2.0"
0 commit comments