From 1293a6c5e4ee4f1f013af91def0be2d448bf33a3 Mon Sep 17 00:00:00 2001 From: Dries Peeters Date: Fri, 19 Sep 2025 09:10:01 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03de57b..cd8a0fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,42 +136,6 @@ jobs: name: security-report path: bandit-report.json - validate-version-management: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: ${{ env.PYTHON_VERSION }} - - - name: Test version manager script - run: | - python scripts/version-manager.py status - python scripts/version-manager.py suggest - - - name: Validate version format - run: | - # Test various version formats - python -c " - import sys - sys.path.append('scripts') - from version_manager import VersionManager - vm = VersionManager() - - test_versions = ['v1.2.3', '1.2.3', 'v1.2', 'build-123', 'rc1', 'beta1', 'alpha1'] - for version in test_versions: - if vm.validate_version_format(version): - print(f'✅ {version} is valid') - else: - print(f'❌ {version} is invalid') - sys.exit(1) - " - create-pr-preview: runs-on: ubuntu-latest if: github.event_name == 'pull_request' @@ -197,7 +161,6 @@ jobs: - ✅ Database migration tests (PostgreSQL & SQLite) - ✅ Docker build and startup test - ✅ Security vulnerability scan - - ✅ Version management validation **Ready for review and merge** 🚀