File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Expand file tree Collapse file tree 1 file changed +4
-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
- uses : actions/checkout@v1
21
+ uses : actions/checkout@v2
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
You can’t perform that action at this time.
0 commit comments