From 368decc4b2668833da7be74f9c7fdb027cad74b3 Mon Sep 17 00:00:00 2001 From: Walmir Silva Date: Tue, 3 Mar 2026 14:29:31 -0300 Subject: [PATCH] ci: remove legacy kariri-ci-cd.yml (replaced by ci.yml + code-quality.yml + release.yml) --- .github/workflows/kariri-ci-cd.yml | 72 ------------------------------ 1 file changed, 72 deletions(-) delete mode 100644 .github/workflows/kariri-ci-cd.yml diff --git a/.github/workflows/kariri-ci-cd.yml b/.github/workflows/kariri-ci-cd.yml deleted file mode 100644 index bd9f272..0000000 --- a/.github/workflows/kariri-ci-cd.yml +++ /dev/null @@ -1,72 +0,0 @@ -name: Kariri CI Pipeline - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - setup-and-lint: - runs-on: ubuntu-latest - strategy: - matrix: - php: ["8.3"] - - steps: - - uses: actions/checkout@v3 - - - name: Cache Composer dependencies - uses: actions/cache@v3 - with: - path: vendor - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-composer- - - - name: Set up PHP ${{ matrix.php }} - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: mbstring, xml - tools: composer:v2, php-cs-fixer, phpunit - - - name: Install dependencies - run: composer install --prefer-dist --no-progress - - - name: Validate composer.json - run: composer validate - - - name: Coding Standards Check - run: vendor/bin/php-cs-fixer fix --dry-run --diff - - unit-tests: - needs: setup-and-lint - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Download Composer Cache - uses: actions/cache@v3 - with: - path: vendor - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-composer- - - - name: Set up PHP ${{ matrix.php }} - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: mbstring, xml - tools: composer:v2, php-cs-fixer, phpunit - - - name: Install dependencies - run: composer install --prefer-dist --no-progress - - - name: Run PHPUnit Tests - run: XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text - - - name: Security Check - run: vendor/bin/security-checker security:check