From 2a7218abc92e4669483e6c5fffd204bd463cf539 Mon Sep 17 00:00:00 2001 From: Dave Conco <118613296+dconco@users.noreply.github.com> Date: Tue, 24 Dec 2024 22:51:53 +0100 Subject: [PATCH 1/2] Delete .github/workflows/php.yml --- .github/workflows/php.yml | 51 --------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/php.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml deleted file mode 100644 index 0f8d276..0000000 --- a/.github/workflows/php.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: PHP Composer - -on: - push: - branches: - - master - pull_request: - branches: - - master - -permissions: - contents: read - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - php-version: [8.2, 8.3, 8.4] - include: - - php-version: 8.3 - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Validate composer.json and composer.lock - run: composer validate --strict - - - name: Set up PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - extensions: mbstring, intl, curl, dom, fileinfo - tools: composer - - - name: Cache Composer packages - id: composer-cache - uses: actions/cache@v3 - with: - path: vendor - key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-php- - - - name: Install dependencies - run: composer install --prefer-dist --no-progress - - - name: Run Tests - run: composer run-script test From fe490ab24074682e484bc74929bae72ad68d02eb Mon Sep 17 00:00:00 2001 From: Dave Conco <118613296+dconco@users.noreply.github.com> Date: Tue, 24 Dec 2024 22:52:24 +0100 Subject: [PATCH 2/2] Delete .github/workflows/php.yml --- .github/workflows/php.yml | 51 --------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/php.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml deleted file mode 100644 index 0f8d276..0000000 --- a/.github/workflows/php.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: PHP Composer - -on: - push: - branches: - - master - pull_request: - branches: - - master - -permissions: - contents: read - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - php-version: [8.2, 8.3, 8.4] - include: - - php-version: 8.3 - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Validate composer.json and composer.lock - run: composer validate --strict - - - name: Set up PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - extensions: mbstring, intl, curl, dom, fileinfo - tools: composer - - - name: Cache Composer packages - id: composer-cache - uses: actions/cache@v3 - with: - path: vendor - key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-php- - - - name: Install dependencies - run: composer install --prefer-dist --no-progress - - - name: Run Tests - run: composer run-script test