feat: Add digital, dry, ink, and paint brush presets; implement regression testing hooks
mandatory-regression-gate / deterministic-tests (push) Has been cancelled
mandatory-regression-gate / protected-performance-path (push) Has been cancelled

- Introduced new crates for digital brushes, dry media brushes, ink brushes, and paint brushes, each containing various presets.
- Updated the menus to include "Paste Special" and "Paste as New Layer" options.
- Enhanced the feature scorecard tests to validate selection texture encoding.
- Added a regression gate workflow for automated testing on push and pull requests.
- Implemented Git hooks for pre-commit checks to ensure code formatting and run tests before commits.
- Created a settings file for local configurations.
This commit is contained in:
Your Name
2026-07-23 02:28:49 +03:00
parent 2d5b7a37e8
commit e509def0b2
26 changed files with 2446 additions and 335 deletions
+26
View File
@@ -0,0 +1,26 @@
name: mandatory-regression-gate
on:
push:
pull_request:
jobs:
deterministic-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Reject commit whitespace errors
run: git show --check --oneline --no-patch HEAD
- name: Run deterministic workspace tests
run: |
cargo check --locked --workspace --exclude hcie-io --examples
cargo test --locked --workspace --exclude hcie-io --lib --tests -- --skip benchmark_4k_stroke_on_multilayer_document
- name: Run protected visual regression tests
run: cargo test --locked -p hcie-engine-api --test visual_regression
protected-performance-path:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Verify protected 4K stroke path
run: cargo test --locked -p hcie-engine-api --test performance_stroke_4k -- --nocapture