File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 4
4
# documentation.
5
5
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
6
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
-
8
7
name : Ruby
9
8
10
9
on :
@@ -18,20 +17,22 @@ permissions:
18
17
19
18
jobs :
20
19
test :
20
+ strategy :
21
+ matrix :
22
+ ruby-version : ['2.4.1']
21
23
runs-on : ubuntu-latest
22
24
steps :
23
25
- uses : actions/checkout@v3
24
- - name : Set up Ruby
26
+ - name : Set up Ruby
25
27
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
26
28
# change this to (see https://github.com/ruby/setup-ruby#versioning):
27
- # uses: ruby/setup-ruby@v1
28
29
uses : ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
29
30
with :
30
- ruby-version : 2.4.1
31
+ ruby-version : ${{ matrix.ruby-version }}
31
32
bundler-cache : true # runs 'bundle install' and caches installed gems automatically
32
33
- name : Run tests
33
34
run : bundle exec rake
34
-
35
+
35
36
- name : Publish to RubyGems
36
37
run : |
37
38
mkdir -p $HOME/.gem
Original file line number Diff line number Diff line change 16
16
=end
17
17
18
18
module Wallee
19
- VERSION = '3.1.2 '
19
+ VERSION = '3.1.3 '
20
20
end
You can’t perform that action at this time.
0 commit comments