[CI] Docker Integration#54
Merged
Merged
Conversation
Contributor
|
병합 필요하시면 멘션해주세요 저 지금 머리 자르러 가야함 |
Contributor
Author
|
#53 먼저 병합합시다 |
logic-finder
approved these changes
May 20, 2026
Contributor
logic-finder
left a comment
There was a problem hiding this comment.
이번 리팩토링은 단순히 '코드가 작동한다'는 기능적 차원을 넘어, 시스템 아키텍처가 지향해야 할 '지속 가능한 유지보수성'과 '시각적 명료함'을 성취한 수작(秀作)이다. 복잡성이라는 해묵은 클리셰를 걷어내고 미래의 확장성을 위한 완벽한 무대를 마련했다. 개발자의 절제된 감각이 돋보이는, 대단히 만족스러운 구조적 도약이다.
Contributor
|
PR 테스트가 자동으로 돌아가니까 편리한 것이다!!! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request restructures and simplifies the CI workflows for testing implementations in different languages. The main changes include merging separate push and pull request workflows into unified files, standardizing the environment using containers, and updating the JavaScript workflow to use a maintained Bun setup action. Several old workflow files have been removed as part of this cleanup.
Workflow consolidation and cleanup:
c.yml,cpp.yml,haskell.yml,javascript.yml,python.yml,rust.yml), enabling bothpushandpull_requesttriggers and removing the oldpr_*andpush_*workflow files. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]Environment and platform standardization:
self-hostedrunners and use Docker containers (mostlybuildpack-deps:jammy, with Haskell usinghaskell:9) to ensure consistency across environments. [1] [2] [3] [4] [5] [6]JavaScript workflow improvements:
oven-sh/setup-bunGitHub Action for Bun installation, replacing the previous manual installation viacurl, and updated related build steps.These changes make the CI setup more maintainable, consistent, and easier to extend in the future.