github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/hello-world/example2.yaml (about)

     1  version: 2.1
     2  
     3  jobs:
     4    hello-job:
     5      machine:
     6        image: ubuntu-2204:2022.07.1
     7      steps:
     8        - checkout # check out the code in the project directory
     9        - run: echo "hello world" # run the `echo` command
    10  
    11  workflows:
    12    my-workflow:
    13      jobs:
    14        - hello-job