http://dacxzjk3kq5mmepbdd3ai2ifynlzxsnpl2cnkfhridqfywihrfftapid.onion/help/ci/components/index.md
For example, avoid using the default global keyword:
# Not recommended
default :
image : ruby:3.0
rspec-1 :
script : bundle exec rspec dir1/
rspec-2 :
script : bundle exec rspec dir2/
Instead, you can:
Add the configuration to each job explicitly:
rspec-1 :
image : ruby:3.0
script : bundle exec rspec dir1/
rspec-2 :
image : ruby:3.0
script : bundle exec rspec dir2/
Use extends to reuse...