mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-26 14:53:48 +03:00
Add PHP 8.3 to building pipeline
This commit is contained in:
parent
4cddb573a0
commit
32f465f7a6
1 changed files with 6 additions and 1 deletions
7
.github/workflows/publish-release.yml
vendored
7
.github/workflows/publish-release.yml
vendored
|
@ -10,8 +10,13 @@ jobs:
|
|||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
matrix:
|
||||
php-version: ['8.2']
|
||||
php-version: ['8.2', '8.3']
|
||||
swoole: ['yes', 'no']
|
||||
exclude:
|
||||
# Openswoole does not support PHP 8.3, so lets not build for that combination
|
||||
# Next Shlink version (4.0.0) is completely dropping support for openswoole and we will be able to remove this
|
||||
- php-version: '8.3'
|
||||
swoole: 'yes'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: './.github/actions/ci-setup'
|
||||
|
|
Loading…
Reference in a new issue