Skip to main content

Examples

Examples

Recommended

Learn how to use the validation command in common development scenarios.

Commandcusty validate

Category

Validation

Quick Command

custy validate

examplesvalidationworkflow

Overview

The following examples demonstrate common ways to validate a project before executing Git or Custy workflows.


Common Examples

Examples

Practical command examples.

Validate the Current Project

Run all validation checks for the current project.

CLI
custy validate

Validate Before a Release Workflow

Confirm that the project is ready before performing release-related operations.

CLI
custy validate



Typical Development Workflow

Examples

Practical command examples.

Manual Git Workflow

Validate the project before executing Git operations manually.

CLI
git add .
custy validate
custy commit
custy tag
custy push

Workflow-Oriented Development

Execute a complete workflow using Custy's pipeline system.

CLI
git add .
custy run release




Common Situations

Manual validation is especially helpful when:

  • Setting up a project for the first time.
  • Reviewing changes before creating a commit.
  • Confirming that required configuration files exist.
  • Verifying template files after running custy init.
  • Diagnosing workflow failures before retrying a release.

What's Next?

Continue to the Output page to learn what information Custy reports after validation completes.