File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
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
+
7
8
name : Ruby
8
9
9
10
on :
@@ -17,23 +18,20 @@ permissions:
17
18
18
19
jobs :
19
20
test :
20
- strategy :
21
- matrix :
22
- ruby-version : ['head','2.4.1', '2.3.4', '2.2.10']
23
21
runs-on : ubuntu-latest
24
22
steps :
25
23
- uses : actions/checkout@v3
26
- - name : Set up Ruby ${{ matrix.ruby-version }}
27
- continue-on-error : true
24
+ - name : Set up Ruby
28
25
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
29
26
# change this to (see https://github.com/ruby/setup-ruby#versioning):
30
- uses : ruby/setup-ruby@v1
27
+ # uses: ruby/setup-ruby@v1
28
+ uses : ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
31
29
with :
32
- ruby-version : ${{ matrix.ruby-version }}
30
+ ruby-version : 2.4.1
33
31
bundler-cache : true # runs 'bundle install' and caches installed gems automatically
34
32
- name : Run tests
35
33
run : bundle exec rake
36
-
34
+
37
35
- name : Publish to RubyGems
38
36
run : |
39
37
mkdir -p $HOME/.gem
You can’t perform that action at this time.
0 commit comments