Spike: Shared workflow updates#35
Open
jonrandahl wants to merge 12 commits intomainfrom
Open
Conversation
- Enabled Rubocop workflow as reusable and manual workflow - Scoped push and pull request triggers to main for both workflows - Documented trigger intent inline for Rubocop workflow
- Added manual dispatch support for workflow - Scoped push and pull request triggers to main for both workflows
- Added Rubocop compliance as a required check before publishing - Renamed verify-code job to verify-unit-tests for clarity - Publish job now requires both lint and test gates to pass
- Updated build to run clean, checks, and gem as a single orchestration path - Removed direct gem build invocation from build to keep package creation logic in one canonical target - Clarified the gem target description to represent general package creation rather than release-only usage
- outline the purpose and function of each workflow - detail triggers, steps, and notes for better understanding - include troubleshooting guidance for common issues - explain how to manually trigger the publishing workflow
- document `Makefile` targets for verification and packaging - update gem publishing instructions to use `make build` - revise API_SERVICE_URL environment variable
- Introduce a `:maintenance` group to explicitly track runtime dependencies - This allows `bundle outdated --only-explicit` to check these gems - Add `foreman` to the `:development` group for local process management - Restrict `byebug` to `mri` and `windows` platforms
- Detail enhancements to the continuous integration and delivery pipeline. - Outline improvements to build process standardisation and verification gates. - Cover updates to documentation for workflows, Makefile targets, and publishing instructions.
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.
Refactors and standardises the GitHub Actions CI/CD pipeline for gem publishing, incorporating reusable workflows and enhancing local development consistency. Provides comprehensive documentation for the updated build and release process.
What's changed:
mainbranch for pushes and pull requests, preventing duplicate runs.Makefilewas extensively updated to standardise build processes, separating verification, packaging, and publishing into distinct, composable targets.README.mdwere updated to reflect the newMakefiletargets and CI pipeline.