<aside>

</aside>

🎯 이번 챕터 λͺ©ν‘œ


πŸ’» κ°•μ˜ 전체 μ½”λ“œ 및 ν”„λ‘œμ νŠΈ ꡬ쑰 (GitHub Actions μ›Œν¬ν”Œλ‘œμš° μΆ”κ°€!)

ν”„λ‘œμ νŠΈ ꡬ쑰:

graph TD
    A(my-pytest-project) --> FOLDER_GITHUB(.github);
    FOLDER_GITHUB --> FOLDER_WORKFLOWS(workflows);
    FOLDER_WORKFLOWS --> FILE_CI_YML(ci.yml GitHub Actions μ›Œν¬ν”Œλ‘œμš° 파일);
    A --> B(.venv);
    A --> C(mycalc);
    A --> D(tests);
    A --> E(pytest.ini);
    A --> F(noxfile.py);
    A --> G(requirements-dev.txt);
    A --> H(pyproject.toml);

    C --> ...;
    D --> ...;

    style FOLDER_GITHUB fill:#ddd, stroke:#333;
    style FOLDER_WORKFLOWS fill:#eee, stroke:#333;
    style FILE_CI_YML fill:#ddf, stroke:#333;
    style B fill:#eee,stroke:#333,stroke-dasharray: 5 5;
    style C fill:#ccf,stroke:#333;
    style D fill:#cfc,stroke:#333;
    style E fill:#fef,stroke:#333;
    style F fill:#ffc,stroke:#333;
    style G fill:#eee,stroke:#333;
    style H fill:#eef,stroke:#333;


πŸ“š λ‚΄μš©

1. 지속적 톡합(CI)μ΄λž€? πŸ”„