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

     1  version: 2.1
     2  
     3  orbs:
     4    win: circleci/windows@5.0.0 # The Windows orb gives you everything you need to start using the Windows executor.
     5  
     6  jobs:
     7    hello-job:
     8      executor:
     9        name: win/default # executor type
    10        size: "medium" # resource class, can be "medium", "large", "xlarge", "2xlarge", defaults to "medium" if not specified
    11  
    12      steps:
    13        # Commands are run in a Windows virtual machine environment
    14        - checkout
    15        - run: Write-Host 'Hello, Windows'
    16  
    17  workflows:
    18    my-workflow:
    19      jobs:
    20        - hello-job