This project implements a basic CI/CD pipeline using GitHub Actions.
The CI workflow is defined in .github/workflows/ci.yml.
- Executes on:
- push
- pull request
- Checks out the repository
- Runs a basic validation step (simulated CI process)
The CD workflow is defined in .github/workflows/cd.yml.
- Executes on:
- push to main branch
- Checks out the repository
- Simulates deployment of the project