You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(tasks): flatten test tasks into mise.toml
Simplifies test task structure by moving task definitions
into main mise.toml with shell scripts for flag handling.
Changes:
- Create tasks/test.sh with MISE USAGE for --postgres flag
- Move test:legacy, test:sqlx tasks to mise.toml
- Remove tasks/rust.toml (moved to mise.toml)
- Update mise.toml includes (remove rust.toml, test.toml)
Structure:
mise.toml (task definitions)
├─ test → tasks/test.sh (accepts --postgres flag)
├─ test:legacy → tasks/test-legacy.sh (accepts --postgres flag)
└─ test:sqlx → inline script
CI compatibility:
✓ Accepts --postgres flag: mise run test --postgres ${VERSION}
✓ Shell scripts handle MISE USAGE flags correctly
✓ Simpler structure (test.toml removed, merged into mise.toml)
0 commit comments