Skip to content

Commit 5e50b18

Browse files
committed
Test with latest Rails versions
1 parent be2ad4f commit 5e50b18

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ jobs:
5050
- '2.7'
5151
- '2.6'
5252
rails:
53-
- rails_5.2.4
54-
- rails_6.0.3
55-
- rails_6.1.0
53+
- rails_5.2.6
54+
- rails_6.0.4
55+
- rails_6.1.4
5656
adapter:
5757
- sqlite3
5858
- postgresql
5959
- mysql2
6060
- oracle_enhanced
6161
exclude:
6262
- ruby: '3.0'
63-
rails: rails_5.2.4
63+
rails: rails_5.2.6
6464

6565
steps:
6666
- name: Checkout

appraisal.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
5.2.4:
2+
5.2.6:
33
sqlite3:
44
version: ~> 1.3.0
55
install_if: '-> { ENV["DB_ADAPTER"] == "sqlite3" }'
@@ -13,7 +13,7 @@
1313
version: ''
1414
install_if: '-> { ENV["DB_ADAPTER"] == "oracle_enhanced" }'
1515

16-
6.0.3:
16+
6.0.4:
1717
sqlite3:
1818
version: ~> 1.4.0
1919
install_if: '-> { ENV["DB_ADAPTER"] == "sqlite3" }'
@@ -27,7 +27,7 @@
2727
version: ''
2828
install_if: '-> { ENV["DB_ADAPTER"] == "oracle_enhanced" }'
2929

30-
6.1.0:
30+
6.1.4:
3131
sqlite3:
3232
version: ~> 1.4.0
3333
install_if: '-> { ENV["DB_ADAPTER"] == "sqlite3" }'

gemfiles/rails_5.2.4.gemfile renamed to gemfiles/rails_5.2.6.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/n-rodriguez/appraisal.git", branch: "wip/install_if"
6-
gem "rails", "5.2.4"
5+
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6+
gem "rails", "5.2.6"
77

88
install_if -> { ENV["DB_ADAPTER"] == "sqlite3" } do
99
gem "sqlite3", "~> 1.3.0"

gemfiles/rails_6.0.3.gemfile renamed to gemfiles/rails_6.0.4.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/n-rodriguez/appraisal.git", branch: "wip/install_if"
6-
gem "rails", "6.0.3"
5+
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6+
gem "rails", "6.0.4"
77

88
install_if -> { ENV["DB_ADAPTER"] == "sqlite3" } do
99
gem "sqlite3", "~> 1.4.0"

gemfiles/rails_6.1.0.gemfile renamed to gemfiles/rails_6.1.4.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/n-rodriguez/appraisal.git", branch: "wip/install_if"
6-
gem "rails", "6.1.0"
5+
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6+
gem "rails", "6.1.4"
77

88
install_if -> { ENV["DB_ADAPTER"] == "sqlite3" } do
99
gem "sqlite3", "~> 1.4.0"

0 commit comments

Comments
 (0)