Skip to content

Commit

Permalink
Prep for v5 merge
Browse files Browse the repository at this point in the history
  • Loading branch information
whikloj committed Nov 21, 2024
1 parent 7ebb8b4 commit bd2b380
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 85 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ["7.4", "8.0", "8.1", "8.2"]
php-versions: ["8.0", "8.1", "8.2", "8.3"]
host-os: ["ubuntu-latest", "windows-latest"]
experimental: [false]

name: PHP ${{ matrix.php-versions }} - OS ${{ matrix.host-os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -40,7 +40,7 @@ jobs:
if: ${{ startsWith( matrix.host-os , 'ubuntu') }}

- name: Cache dependencies (Ubuntu)
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composercache-ubuntu.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -55,7 +55,7 @@ jobs:
if: ${{ startsWith( matrix.host-os , 'windows') }}

- name: Cache dependencies (Windows)
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composercache-windows.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -73,7 +73,7 @@ jobs:
run: composer phpunit

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./clover.xml
fail_ci_if_error: true
Expand Down
80 changes: 0 additions & 80 deletions .github/workflows/v5.yml

This file was deleted.

0 comments on commit bd2b380

Please sign in to comment.