File tree Expand file tree Collapse file tree 1 file changed +18
-9
lines changed
Expand file tree Collapse file tree 1 file changed +18
-9
lines changed Original file line number Diff line number Diff line change 1+ # This workflow uses actions that are not certified by GitHub.
2+ # They are provided by a third-party and are governed by
3+ # separate terms of service, privacy policy, and support
4+ # documentation.
5+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7+
18name : Ruby
29
310on :
714 branches : [ master ]
815
916jobs :
10- build :
17+ test :
1118
1219 runs-on : ubuntu-latest
1320
1421 steps :
1522 - uses : actions/checkout@v2
16- - name : Set up Ruby 2.6
17- uses : actions/setup-ruby@v1
23+ - name : Set up Ruby
24+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
25+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
26+ # uses: ruby/setup-ruby@v1
27+ uses : ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
1828 with :
19- ruby-version : 2.6.x
20- - name : Build and test with Rake
21- run : |
22- gem install bundler
23- bundle install --jobs 4 --retry 3
24- bundle exec rake
29+ ruby-version : 2.6
30+ - name : Install dependencies
31+ run : bundle install
32+ - name : Run tests
33+ run : bundle exec rake
You can’t perform that action at this time.
0 commit comments