File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -14,21 +14,23 @@ jobs:
14
14
fail-fast : false
15
15
matrix :
16
16
include :
17
- - docker-image : ' library/ ruby:2.5'
18
- - docker-image : ' library/ ruby:2.6'
19
- - docker-image : ' library/ ruby:2.7'
20
- - docker-image : ' library/ ruby:3.0'
21
- - docker-image : ' library/ ruby:3.1'
22
- - docker-image : ' bitnami/ jruby:latest '
23
- container : ${{ matrix.docker-image }}
17
+ - ruby : 2.5
18
+ - ruby : 2.6
19
+ - ruby : 2.7
20
+ - ruby : 3.0
21
+ - ruby : 3.1
22
+ - ruby : jruby
23
+ - ruby : truffleruby
24
24
steps :
25
25
- uses : actions/checkout@v2
26
- - name : Install dependencies
27
- run : bundle install
28
- continue-on-error : ${{ contains(matrix.docker-image, 'jruby') }}
26
+ - uses : ruby/setup-ruby@v1
27
+ with :
28
+ ruby-version : ${{ matrix.ruby }}
29
+ bundler-cache : true
30
+ continue-on-error : ${{ matrix.ruby == 'jruby' }}
29
31
- name : Run tests
30
32
run : bundle exec rake spec
31
- continue-on-error : ${{ contains( matrix.docker-image, 'jruby') }}
33
+ continue-on-error : ${{ matrix.ruby == 'jruby' }}
32
34
actionmailer :
33
35
runs-on : ubuntu-latest
34
36
steps :
You can’t perform that action at this time.
0 commit comments