github.com/yourbase/yb@v0.7.1/cmd/yb/init_templates/ruby.yml (about) 1 # YourBase build configuration 2 # See https://docs.yourbase.io/ for reference. 3 4 dependencies: 5 build: 6 - ruby:2.6.3 7 8 build_targets: 9 - name: default 10 commands: 11 - gem install bundler 12 - bundle install 13 - bundle exec rspec 14 15 # This section configures which targets get built on CI. 16 ci: 17 builds: 18 - name: default 19 build_target: default 20 # If you only want certain events, uncomment the following line. 21 # when: branch IS 'main' OR action IS 'pull_request'