mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2025-12-31 00:09:58 -06:00
Implement a complete, production-ready CI/CD pipeline that runs 100% on GitHub Actions with zero external dependencies. This replaces and consolidates existing workflows with an optimized, streamlined pipeline. ## Major Changes - Add 3 new workflows (ci-comprehensive, cd-development, cd-release) - Remove 2 redundant workflows (backed up) - Add 130+ tests across 4 new test files - Add 8 documentation guides (60+ KB) - Add developer tools and scripts
22 lines
506 B
Batchfile
22 lines
506 B
Batchfile
@echo off
|
|
REM TimeTracker CI/CD Setup Validation Script for Windows
|
|
REM Runs the Python validation script
|
|
|
|
echo ========================================
|
|
echo TimeTracker CI/CD Setup Validation
|
|
echo ========================================
|
|
echo.
|
|
|
|
REM Check if Python is available
|
|
python --version >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo ERROR: Python not found!
|
|
echo Please install Python 3.11 or higher
|
|
exit /b 1
|
|
)
|
|
|
|
REM Run the validation script
|
|
python scripts\validate-setup.py
|
|
exit /b %ERRORLEVEL%
|
|
|