mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f9de8ccf1e
Because they don't play nice with ruby-core's gitignore and cause issues with ruby-core integration. Also, because it's consistent with other templates such as `gitignore.tt`.
18 lines
380 B
Text
18 lines
380 B
Text
name: Ruby
|
|
|
|
on: [push,pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: <%= RUBY_VERSION %>
|
|
- name: Run the default task
|
|
run: |
|
|
gem install bundler -v <%= Bundler::VERSION %>
|
|
bundle install
|
|
bundle exec rake
|