Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions .github/workflows/run-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ jobs:
fail-fast: ${{ inputs.fail-fast }}
matrix:
php:
- 8.1
- 8.2
- 8.3
- 8.4
Expand All @@ -67,7 +66,7 @@ jobs:
# Add Windows
- os: windows-latest
extensions-suffix: ', protobuf'
php: 8.1
php: 8.2
dependencies: highest
steps:
- name: Set Git To Use LF
Expand All @@ -94,14 +93,28 @@ jobs:

- name: Validate lowest dependencies
id: validate
if: matrix.dependencies == 'lowest' && matrix.php == '8.1'
if: matrix.dependencies == 'lowest' && matrix.php == '8.2'
env:
COMPOSER_POOL_OPTIMIZER: 0
run: vendor/bin/validate-prefer-lowest
continue-on-error: true

- name: Download binaries
- name: Cache runtime binaries
id: cache-binaries
if: inputs.download-binaries == true
uses: actions/cache@v4
with:
path: |
./rr
./rr.exe
./temporal
./temporal.exe
./temporal-test-server
./temporal-test-server.exe
key: ${{ runner.os }}-binaries-${{ hashFiles('dload.xml') }}

- name: Download binaries
if: inputs.download-binaries == true && steps.cache-binaries.outputs.cache-hit != 'true'
run: composer get:binaries

- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"source": "https://github.com/temporalio/sdk-php"
},
"require": {
"php": ">=8.1",
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"google/common-protos": "^4.9",
Expand All @@ -32,7 +32,7 @@
"nesbot/carbon": "^2.72.6 || ^3.8.4",
"psr/log": "^2.0 || ^3.0.2",
"ramsey/uuid": "^4.7.6",
"roadrunner-php/roadrunner-api-dto": "^1.14.0",
"roadrunner-php/roadrunner-api-dto": "^1.15.0",
"roadrunner-php/version-checker": "^1.0.2",
"spiral/attributes": "^3.1.8",
"spiral/roadrunner": "^2025.1.5",
Expand Down