Add CI workflows: check, test, scheduled#6
Merged
Conversation
- check: fmt, clippy (stable+beta), docs, semver, MSRV - test: stable+beta on ubuntu, stable on mac+windows - scheduled: nightly rolling builds + dependency update checks Based on jonhoo/rust-ci-conf patterns. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- cargo fmt across all source files - Check in Cargo.lock to ensure reproducible CI builds Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Remove Cargo.lock from .gitignore. Without the lockfile, CI resolves fresh dependency versions which can break due to transitive version mismatches (e.g. serde::__private in alloy-consensus). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The lockfile is checked in for reproducibility, but --locked rejects any resolution differences across toolchains (beta, nightly) and platforms (mac, windows). Removing it lets CI use the lockfile as a starting point while allowing minor resolution updates. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace check.yml, test.yml, scheduled.yml with one ci.yml. Four jobs: fmt, clippy, test, doc (nightly). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Allow assertions_on_constants in bench size checks and gas limit tests - Collapse nested if in hft_bot example Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The crate has no feature flags. --all-features activates transitive dependency features (alloy) that cause compilation failures in CI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The prepare-publish PR renamed the package to perpcity-sdk but didn't update the 71 internal references across examples, benches, doc tests, and source files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Praz314159
force-pushed
the
ci/github-actions
branch
from
March 10, 2026 02:58
179e529 to
d73fea7
Compare
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.
Based on jonhoo/rust-ci-conf patterns.