File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
test :
10
10
runs-on : ubuntu-latest
11
+ env :
12
+ BUNDLE_GEMFILE : ${{ github.workspace }}/.gemfiles/${{ matrix.gemfile }}.gemfile
11
13
strategy :
12
14
matrix :
13
- ruby : ['2.6', '2.7', '3.0' ]
15
+ ruby : ['2.6', '2.7', '3.0', '3.1' ]
14
16
gemfile :
15
- - .gemfiles/ rails-5.2.x.gemfile
16
- - .gemfiles/ rails-6.0.x.gemfile
17
- - .gemfiles/ rails-6.1.x.gemfile
17
+ - rails-5.2.x
18
+ - rails-6.0.x
19
+ - rails-6.1.x
18
20
19
21
steps :
20
22
- uses : actions/checkout@v2
21
23
- name : Set up Ruby
22
24
uses : ruby/setup-ruby@v1
23
25
with :
24
26
ruby-version : ${{ matrix.ruby }}
25
- - name : Install dependencies
26
- run : bundle install --gemfile=${{ matrix.gemfile }} --jobs 4
27
+ bundler-cache : true
27
28
- name : Run tests
28
29
run : bundle exec rake
You can’t perform that action at this time.
0 commit comments