mix raxol.check (Raxol v2.0.1)
View SourceRun comprehensive quality checks on the Raxol codebase.
This task runs multiple quality checks in sequence:
- Compilation check
- Format check
- Credo analysis
- Dialyzer (if available)
- Security audit
- Test suite
Usage
mix raxol.check [OPTIONS]Options
--only CHECKS- Run only specific checks (comma-separated)--skip CHECKS- Skip specific checks (comma-separated)--strict- Run all checks in strict mode--quick- Run only fast checks (skip dialyzer)
Examples
# Run all checks
mix raxol.check
# Run only format and compile checks
mix raxol.check --only compile,format
# Skip dialyzer
mix raxol.check --skip dialyzer
# Quick check (no dialyzer)
mix raxol.check --quick