mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
The rubocop only runs in the CI this way a contributor probably will see a rubocop offense only in the CI. Running the rubocop in the default rake task we have more chance that a offense be get in the local machine.
27 lines
466 B
YAML
27 lines
466 B
YAML
version: '{build}'
|
|
|
|
skip_tags: true
|
|
|
|
environment:
|
|
matrix:
|
|
- ruby_version: "193"
|
|
- ruby_version: "193-x64"
|
|
- ruby_version: "200"
|
|
- ruby_version: "200-x64"
|
|
- ruby_version: "21"
|
|
- ruby_version: "21-x64"
|
|
|
|
install:
|
|
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
|
- ruby --version
|
|
- gem --version
|
|
- gem install bundler
|
|
- bundler --version
|
|
- bundle platform
|
|
- bundle install --retry=3
|
|
|
|
test_script:
|
|
- bundle exec rake test
|
|
|
|
build: off
|