.circleci/config.yml in sinatra-validation-0.3.2 vs .circleci/config.yml in sinatra-validation-0.4.0
- old
+ new
@@ -1,20 +1,20 @@
version: 2
jobs:
build:
docker:
- - image: circleci/ruby:2.6.6
+ - image: ruby:3.3.0
working_directory: ~/repo
steps:
- checkout
- - run:
+ - run:
name: install deps
command: |
bundle install --jobs=4 --retry=3 --path vendor/bundle
- - run:
+ - run:
name: run tests
command: |
bundle exec rake spec