Skip to content

Commit

Permalink
Do not run openswoole API tests with PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Nov 5, 2023
1 parent e431395 commit 61a4e1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,19 @@ on:
type: string
required: true
description: One of unit, api or cli
skip-php-83:
type: boolean
required: false
default: false
description: Whether to skip execution with PHP 8.3 or not

jobs:
tests:
runs-on: ubuntu-22.04
strategy:
matrix:
php-version: ['8.2', '8.3']
continue-on-error: ${{ matrix.php-version == '8.3' }}
if: ${{ matrix.php-version != '8.3' || inputs.skip-php-83 == false }}
steps:
- uses: actions/checkout@v4
- name: Start postgres database server
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
uses: './.github/workflows/ci-tests.yml'
with:
test-group: api
skip-php-83: true

roadrunner-api-tests:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 61a4e1b

Please sign in to comment.