Skip to content

Commit

Permalink
Merge pull request #261 from hydephp/run-tests-on-php-8.1-through-php…
Browse files Browse the repository at this point in the history
…-8.3

Internal: Run tests on PHP 8.1 through PHP 8.3
  • Loading branch information
caendesilva authored Jun 30, 2024
2 parents e9ff890 + 5770d40 commit 4c4af69
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
dependency-version: [composer, latest]
php: [8.1, 8.2, 8.3]

runs-on: ${{ matrix.os }}
name: Hyde tests - ${{ matrix.os }} (${{ matrix.dependency-version }})
Expand All @@ -21,7 +22,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: ${{ matrix.php }}
extensions: fileinfo

- uses: actions/checkout@v3
Expand All @@ -46,7 +47,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
php: [8.1, 8.2]
php: [8.1, 8.2, 8.3]

runs-on: ${{ matrix.os }}
name: Hyde tests - ${{ matrix.os }} ${{ matrix.php }} (develop)
Expand Down

0 comments on commit 4c4af69

Please sign in to comment.