Skip to content

Commit

Permalink
Test on 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
janlanger committed Nov 25, 2024
1 parent c2decb1 commit 24c253d
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -58,15 +59,15 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "8.3"
php-version: "8.4"
tools: composer:v2

- name: "Cache dependencies"
uses: "actions/cache@v4"
with:
path: "~/.composer/cache"
key: "php-8.3-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-8.3-composer-"
key: "php-8.4-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-8.4-composer-"

- name: "Install dependencies"
run: "composer update --prefer-dist --no-interaction --no-progress --no-suggest"
Expand All @@ -88,6 +89,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -125,6 +127,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"

operating-system: ["ubuntu-latest", "windows-latest"]

Expand Down Expand Up @@ -172,15 +175,15 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "pcov"
php-version: "8.3"
php-version: "8.4"
tools: pecl

- name: "Cache dependencies"
uses: "actions/cache@v4"
with:
path: "~/.composer/cache"
key: "php-8.3-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-8.3-composer-"
key: "php-8.4-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-8.4-composer-"

- name: "Install dependencies"
run: "composer update --prefer-dist --no-interaction --no-progress --no-suggest"
Expand Down

0 comments on commit 24c253d

Please sign in to comment.