Add CI pipeline - #2
Merged
Merged
Conversation
- Add .github/workflows/ci.yml running mix format --check-formatted, mix compile --warnings-as-errors, and mix test on Elixir 1.19 / OTP 28 with deps/_build caching - Pin local toolchain via mise.toml (elixir 1.19.5-otp-28, erlang 28.4) so local dev matches CI - Add :test_ignore_filters to mix.exs, silencing the Elixir 1.19+ test-loader warning for test/support and test/fixtures files - Run mix format to fix pre-existing formatting violations across lib/ and test/ Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
- Add zizmor job to CI via zizmorcore/zizmor-action (advanced-security: false, annotations: true) for GitHub Actions security analysis - Pin all action uses to full-length commit SHAs with pinact - Set persist-credentials: false on checkout steps (fixes zizmor artipacked) - Add pinact and zizmor to mise.toml tooling Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
- Lower elixir requirement to ~> 1.17 in mix.exs - Expand CI matrix to Elixir 1.17/OTP27, 1.18/OTP27, 1.19/OTP28, 1.20/OTP29 - Set fail-fast: false so one version failing doesn't cancel the others Verified locally: clean `mix format --check-formatted` and `mix compile --warnings-as-errors`, plus 731 tests passing, on all four Elixir/OTP pairs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Adds a basic CI pipeline and fixes pre-existing issues it surfaced.