-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix failing installation on Linux and Refactor Main Workflow #602
Conversation
…d, and integration test
… 'Run Integration Tests' job
WalkthroughThis update enhances GitHub Actions workflows by using updated action versions and refines the workflow structure with distinct jobs for various testing phases. Additionally, a new TypeScript script for type checking is introduced in Changes
Poem
Recent Review DetailsConfiguration used: CodeRabbit UI Files selected for processing (6)
Files skipped from review due to trivial changes (2)
Additional comments not posted (4)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Update workflow.yaml to include new jobs for checks, unit tests, build, and integration test.
And cache clear before
apt-get update
.Background
This implemented an integration test that actually executes the GitHub Action.
Initially, the goal was to diagnose the cause of failures occurring when running GitHub Actions on macOS. Fortunately, I managed to install Graphviz on macOS without any alterations to the existing mechanisms. (#593)
However, during this process, I encountered new issues with installations on Linux. As a temporary measure, I have implemented provisional support using apt-get.
fix #593
fix #601
Summary by CodeRabbit
Chores
New Features
Refactor
GraphvizInstaller
to clean up system caches more efficiently before updates.