.continuous_integration.yml 226 B

123456789101112131415
  1. stages:
  2. - test
  3. ._test: &test_template
  4. stage: test
  5. only:
  6. - master
  7. script:
  8. - ruby meta_koans.rb 9 2
  9. test_alpine:
  10. image: ruby:2.6-alpine
  11. <<: *test_template
  12. test_defacto:
  13. image: ruby:2.5
  14. <<: *test_template