File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313
1414 steps :
1515 - uses : actions/checkout@v1
16- - name : Set up Ruby 2.6
16+ - name : Set up Ruby 3.1
1717 uses : actions/setup-ruby@v1
1818 with :
19- ruby-version : 2.6 .x
19+ ruby-version : 3.1 .x
2020 - name : Install required package
2121 run : |
2222 sudo apt-get install alien
Original file line number Diff line number Diff line change @@ -12,10 +12,11 @@ jobs:
1212 strategy :
1313 matrix :
1414 ruby : [
15- 3.0,
16- 2.7,
17- 2.6,
18- 2.5,
15+ ' 3.1' ,
16+ ' 3.0' ,
17+ ' 2.7' ,
18+ ' 2.6' ,
19+ ' 2.5' ,
1920 ruby-head,
2021 ruby-debug
2122 ]
Original file line number Diff line number Diff line change 11source "http://rubygems.org"
22
3+ git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
4+
35group :development do
46 gem "juwelier" , "~> 2.0"
57 gem "rspec_junit_formatter"
@@ -19,6 +21,10 @@ group :test, :development do
1921 end
2022
2123 platforms :ruby , :mswin , :mingw do
22- gem "ruby-oci8" , "~> 2.1"
24+ if RUBY_VERSION >= "3.2"
25+ gem "ruby-oci8" , github : "kubo/ruby-oci8" , branch : "master"
26+ else
27+ gem "ruby-oci8" , "~> 2.1"
28+ end
2329 end
2430end
You can’t perform that action at this time.
0 commit comments