연금계좌 (22) 및 퇴직연금 (29) 지원 #146
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
| # PyKIS CI/CD Pipeline | |
| # Reusable workflow from ci-templates | |
| name: CI | |
| on: | |
| push: | |
| branches: [main, develop, 'feature/**'] | |
| pull_request: | |
| branches: [main, develop] | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| uses: unohee/ci-templates/.github/workflows/python-ci.yml@main | |
| with: | |
| python-version: '3.12' | |
| # 패키지는 pykis/ 에서 kis_agent/ 로 이름이 바뀌었다. 경로가 낡아 있던 동안 | |
| # lint/bandit/LOC/커버리지가 존재하지 않는 디렉터리를 검사하며 통과했다. | |
| src-path: 'kis_agent/' | |
| test-path: 'tests/' | |
| coverage-threshold: 100 | |
| max-line-count: 1500 | |
| secrets: inherit |