File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -73,16 +73,15 @@ jobs:
73
73
ruby : " 3.4"
74
74
- rails : " 8.0"
75
75
ruby : " 3.1"
76
-
76
+ env :
77
+ BUNDLE_GEMFILE : gemfiles/rails_${{ matrix.rails }}.rb
77
78
steps :
78
79
- name : Checkout source
79
80
uses : actions/checkout@v4
80
81
- name : Setup ruby
81
82
uses : ruby/setup-ruby@v1
82
83
with :
83
84
ruby-version : ${{ matrix.ruby }}
84
- env :
85
- BUNDLE_GEMFILE : gemfiles/rails_${{ matrix.rails }}.rb
86
85
87
86
# MySQL db was created above, sqlite will be created during test suite,
88
87
# when migrations occur, so we only need to create the postgres db. I
@@ -106,13 +105,11 @@ jobs:
106
105
- name : Test, sqlite
107
106
run : bundle exec rake test
108
107
env :
109
- BUNDLE_GEMFILE : gemfiles/rails_${{ matrix.rails }}.rb
110
108
DB : sqlite
111
109
- name : Test, mysql
112
110
run : bundle exec rake test
113
111
env :
114
112
BACKTRACE : 1
115
- BUNDLE_GEMFILE : gemfiles/rails_${{ matrix.rails }}.rb
116
113
DB : mysql
117
114
AUTHLOGIC_DB_NAME : authlogic
118
115
AUTHLOGIC_DB_USER : root
@@ -122,7 +119,6 @@ jobs:
122
119
run : bundle exec rake test
123
120
env :
124
121
BACKTRACE : 1
125
- BUNDLE_GEMFILE : gemfiles/rails_${{ matrix.rails }}.rb
126
122
DB : postgres
127
123
AUTHLOGIC_DB_NAME : authlogic
128
124
AUTHLOGIC_DB_USER : postgres
You can’t perform that action at this time.
0 commit comments