Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

config.yml 944 B

1234567891011121314151617181920212223242526
  1. # Use the latest 2.1 version of CircleCI pipeline process engine.
  2. # See: https://circleci.com/docs/2.0/configuration-reference
  3. version: 2.1
  4. # Define a job to be invoked later in a workflow.
  5. # See: https://circleci.com/docs/2.0/configuration-reference/#jobs
  6. jobs:
  7. say-hello:
  8. # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
  9. # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
  10. docker:
  11. - image: cimg/base:stable
  12. # Add steps to the job
  13. # See: https://circleci.com/docs/2.0/configuration-reference/#steps
  14. steps:
  15. - checkout
  16. - run:
  17. name: "Say hello"
  18. command: "echo Hello, World!"
  19. # Invoke jobs via workflows
  20. # See: https://circleci.com/docs/2.0/configuration-reference/#workflows
  21. workflows:
  22. say-hello-workflow:
  23. jobs:
  24. - say-hello