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:
14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- ruby : ['2.4.x ', '2.5.x ', '2.6.x ']
17
+ ruby : ['2.4', '2.5', '2.6']
18
18
19
19
steps :
20
20
- name : Checkout
21
21
uses : actions/checkout@v1
22
22
23
23
- name : Setup Ruby
24
- uses : actions /setup-ruby@v1
24
+ uses : ruby /setup-ruby@v1
25
25
with :
26
26
ruby-version : ${{ matrix.ruby }}
27
+ bundler-cache : true
27
28
28
29
- name : Install sqlite
29
30
run : |
30
31
sudo apt-get install libsqlite3-dev
31
32
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
-
40
33
- name : Run Tests
41
34
run : INTEGRATION_TESTS=1 bundle exec rspec
42
35
Original file line number Diff line number Diff line change 7
7
env :
8
8
- RAILS_ENV=development RACK_ENV=development INTEGRATION_TESTS=1
9
9
10
+ cache : bundler
11
+
10
12
addons :
11
13
apt_packages :
12
14
- libsqlite3-dev
Original file line number Diff line number Diff line change @@ -1971,7 +1971,7 @@ class FooWithKnownMacro < ActiveRecord::Base
1971
1971
end
1972
1972
end
1973
1973
1974
- context 'when the file includes invlaid multibyte chars (USASCII)' do
1974
+ context 'when the file includes invalid multibyte chars (USASCII)' do
1975
1975
context 'when class FooWithUtf8 is defined in "foo_with_utf8.rb"' do
1976
1976
let :filename do
1977
1977
'foo_with_utf8.rb'
You can’t perform that action at this time.
0 commit comments