Skip to content

Commit

Permalink
PHP 8.3 support (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell authored Aug 27, 2023
1 parent 154dbc7 commit b57dca1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build-lowest-version:
name: Build lowest version
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Set up PHP
Expand All @@ -20,7 +20,7 @@ jobs:
extensions: mbstring

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install dependencies
run: composer update --no-interaction --prefer-stable --prefer-lowest --no-progress
Expand All @@ -30,11 +30,11 @@ jobs:

build:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
max-parallel: 10
matrix:
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']

steps:
- name: Set up PHP
Expand All @@ -46,7 +46,7 @@ jobs:
extensions: mbstring

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install dependencies
run: composer update --no-interaction --no-progress
Expand Down

0 comments on commit b57dca1

Please sign in to comment.