Skip to content

Commit

Permalink
chore: update github action to test PHP 8.* on Win, Linux and Mac.
Browse files Browse the repository at this point in the history
  • Loading branch information
carbontwelve committed May 14, 2024
1 parent 2c72c36 commit 2f38940
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,30 @@ permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
php-versions: ['8.1', '8.2', '8.3']
name: PHP ${{ matrix.php-versions }} Test on ${{ runner.os }}
steps:
- uses: actions/checkout@v3

- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
key: ${{ runner.os }}-${{ matrix.php-versions }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
${{ runner.os }}-${{ matrix.php-versions }}-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
Expand Down

0 comments on commit 2f38940

Please sign in to comment.