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

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