forked from loafle/openapi-generator-original
* Add new Ruby versions to the Travis CI build matrix configuration * Build the project and update samples
15 lines
221 B
YAML
15 lines
221 B
YAML
language: ruby
|
|
cache: bundler
|
|
rvm:
|
|
- 2.3
|
|
- 2.4
|
|
- 2.5
|
|
- 2.6
|
|
- 2.7
|
|
- 3.0
|
|
script:
|
|
- bundle install --path vendor/bundle
|
|
- bundle exec rspec
|
|
- gem build petstore.gemspec
|
|
- gem install ./petstore-1.0.0.gem
|