mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
14 lines
258 B
YAML
14 lines
258 B
YAML
dist: trusty
|
|
language: ruby
|
|
cache: bundler
|
|
rvm:
|
|
- 2.6
|
|
- 2.5
|
|
bundler_args: --without production
|
|
before_install:
|
|
- gem update --system
|
|
- gem install bundler
|
|
script:
|
|
- export RAILS_ENV=test
|
|
- bundle exec rake db:schema:load
|
|
- bundle exec rake test |