ci: Add GitHub Actions test workflow and local CI testing - #33
Merged
Conversation
- Add test.yml workflow to run installer tests on PRs and pushes to main - Add ci-local-test command to Makefile for local GitHub Actions testing using act - Workflow requires all tests in tests/ directory to pass before merging - Local testing command is macOS-focused for development workflow 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
GitHub Actions runners only include docker compose plugin, not standalone docker-compose binary. This adds a symlink for backwards compatibility.
Added documentation for the new ci-local-test make target in the Local Development section of README.md for macOS developers to test GitHub Actions workflows locally using act.
This was referenced Aug 21, 2025
…in permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
etbyrd
approved these changes
Sep 2, 2025
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.
Summary
tests/directory to pass before mergingci-local-testcommand to Makefile for local GitHub Actions testing using actChanges
.github/workflows/test.yml: New workflow that runs installer tests on PRs and pushes to mainMakefile: Addedci-local-testcommand for macOS developers to test CI locallyTesting
The workflow will automatically run the installer tests using Docker, ensuring all tests pass before PRs can be merged.
For local testing, developers can run:
To make this a required check for merging, you'll need to:
Test Plan
🤖 Generated with Claude Code