

Amazon CodeCatalyst는 더 이상 신규 고객에게 공개되지 않습니다. 기존 고객은 정상적으로 서비스를 계속 이용할 수 있습니다. 자세한 내용은 [CodeCatalyst에서 마이그레이션하는 방법](migration.md) 단원을 참조하십시오.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 예시: 두 작업 그룹 정의
<a name="workflows-group-actions-example"></a>

다음 예시에서는 두 개의 Amazon CodeCatalyst 작업 그룹인 `BuildAndTest` 및 `Deploy`를 정의하는 방법을 보여줍니다. `BuildAndTest` 그룹에는 두 개의 작업(`Build` 및 `Test`)이 포함되며 `Deploy` 그룹에는 두 개의 작업(`DeployCloudFormationStack` 및 `DeployToECS`)도 포함됩니다.

```
Actions:
  BuildAndTest: # Action group 1
    Actions:
      Build:
        Identifier: aws/build@v1
        Configuration:
          ...
      Test:
        Identifier: aws/managed-test@v1
        Configuration:
  Deploy: #Action group 2
    Actions:
      DeployCloudFormationStack:
        Identifier: aws/cfn-deploy@v1
        Configuration:
          ...
      DeployToECS:
        Identifier: aws/ecs-deploy@v1
        Configuration:
          ...
```