Circleci
Circle CI 101 4 questions
- #1What is Circle CI?
- #2What are some benefits of Circle CI?
- #3Explain the following:
- Pipeline
- Workflow
- Jobs
- Steps
- #4What is an Orb?
Circle CI Hands-On 101 2 questions
- #5Where (in what location in the project) Circle CI pipelines are defined?
- #6Explain the following configuration file
version: 2.1 jobs: say-hello: docker: - image: cimg/base:stable steps: - checkout - run: name: "Say hello" command: "echo Hello, World!" workflows: say-hello-workflow: jobs: - say-hello