docs: 가이드 문서와 아키텍처 문서를 현 코드 기준으로 갱신 #23
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PR 검증 — main 으로의 PR 에서 lint/build/test(verify.yml 재사용). | |
| # main push 시의 검증은 deploy-backend.yml 의 verify 잡이 담당(배포 전 게이트). | |
| name: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| uses: ./.github/workflows/verify.yml |