File tree Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -14,29 +14,22 @@ jobs:
1414 strategy :
1515 fail-fast : false
1616 matrix :
17- ruby : ['2.4.x ', '2.5.x ', '2.6.x ']
17+ ruby : ['2.4', '2.5', '2.6']
1818
1919 steps :
2020 - name : Checkout
2121 uses : actions/checkout@v1
2222
2323 - name : Setup Ruby
24- uses : actions /setup-ruby@v1
24+ uses : ruby /setup-ruby@v1
2525 with :
2626 ruby-version : ${{ matrix.ruby }}
27+ bundler-cache : true
2728
2829 - name : Install sqlite
2930 run : |
3031 sudo apt-get install libsqlite3-dev
3132
32- - name : Update System
33- run : |
34- gem update --system --no-document
35-
36- - name : Bundle install for Annotate models
37- run : |
38- bundle install --jobs=4 --retry=3
39-
4033 - name : Run Tests
4134 run : INTEGRATION_TESTS=1 bundle exec rspec
4235
Original file line number Diff line number Diff line change 77env :
88 - RAILS_ENV=development RACK_ENV=development INTEGRATION_TESTS=1
99
10+ cache : bundler
11+
1012addons :
1113 apt_packages :
1214 - libsqlite3-dev
Original file line number Diff line number Diff line change @@ -1971,7 +1971,7 @@ class FooWithKnownMacro < ActiveRecord::Base
19711971 end
19721972 end
19731973
1974- context 'when the file includes invlaid multibyte chars (USASCII)' do
1974+ context 'when the file includes invalid multibyte chars (USASCII)' do
19751975 context 'when class FooWithUtf8 is defined in "foo_with_utf8.rb"' do
19761976 let :filename do
19771977 'foo_with_utf8.rb'
You can’t perform that action at this time.
0 commit comments