12 lines
209 B
YAML
12 lines
209 B
YAML
|
language: ruby
|
||
|
cache: bundler
|
||
|
rvm:
|
||
|
- 2.3
|
||
|
- 2.4
|
||
|
- 2.5
|
||
|
script:
|
||
|
- bundle install --path vendor/bundle
|
||
|
- bundle exec rspec
|
||
|
- gem build openapi_client.gemspec
|
||
|
- gem install ./openapi_client-1.0.0.gem
|