ci: run the quant + execution test suites on every push - #3
Open
nadaamd wants to merge 1 commit into
Open
Conversation
- .github/workflows/ci.yml β two jobs, pip/npm caches, `npm ci` on the lockfile:
- quant: the 21 unit tests (pytest). The 7 e2e tests are deselected via
`-m "not e2e"`: they replay the real depeg dataset, which is gitignored,
so letting them skip silently would make a green job meaningless.
- execution: `tsc --noEmit` then the 8 unit tests (node:test).
- README: CI badge under the title.
Verified locally before pushing: 21 + 8 tests pass, tsc reports 0 errors.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Adds GitHub Actions CI for the two suites that already exist in the repo but were never run automatically.
quant β 21 unit tests (
pytest). The 7 e2e tests are deselected with-m "not e2e": they replay the real USDC-depeg dataset, which is gitignored, so letting them skip silently would make a green job meaningless.execution β
tsc --noEmit(0 errors) then the 8 unit tests (node:test), installed withnpm cifrom the committed lockfile.Verified locally before pushing: 21 + 8 pass. Also adds the CI badge under the README title (renders once
mainhas its first run).π€ Generated with Claude Code