version: 2.1 orbs: ruby: circleci/ruby@1.1.2 executors: ruby: docker: - image: circleci/ruby:2.7.2 commands: performance-check: steps: - run: name: Run Fasterer command: bundle exec fasterer jobs: testing: executor: ruby steps: - checkout - ruby/install-deps - ruby/rspec-test checking: executor: ruby steps: - checkout - ruby/install-deps - ruby/rubocop-check performance: executor: ruby steps: - checkout - ruby/install-deps - performance-check workflows: version: 2 integration: jobs: - checking - testing - performance