Skip to content

Commit

Permalink
Update workflow for newer php versions, bump cache & setup versions
Browse files Browse the repository at this point in the history
  • Loading branch information
canihavesomecoffee committed Mar 9, 2023
1 parent 37d33f4 commit d3aedc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.4', '8.0']
php-versions: ['7.4', '8.0', '8.1', '8.2']
experimental: [false]
include:
- php-versions: '8.1'
- php-versions: '8.3'
operating-system: ubuntu-latest
experimental: true
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install PHP
uses: shivammathur/setup-php@v2
Expand All @@ -32,7 +32,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
Expand Down

0 comments on commit d3aedc1

Please sign in to comment.