Skip to content

Commit 756e749

Browse files
committed
fix "Error when evaluating 'timeout-minutes' for job 'test'"
1 parent 3d9737f commit 756e749

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/run-test-suite.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
test:
4343
name: PHP${{ matrix.php }}${{ matrix.extensions-suffix }}, ${{ matrix.os }}, ${{ matrix.dependencies }} deps
4444
runs-on: ${{ matrix.os }}
45-
timeout-minutes: ${{ matrix.timeout-minutes }}
45+
timeout-minutes: ${{ inputs.test-timeout }}
4646
env: {GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'}
4747
strategy:
4848
fail-fast: ${{ inputs.fail-fast }}
@@ -51,7 +51,6 @@ jobs:
5151
os: [ ubuntu-latest ]
5252
extensions-suffix: [ '', ', protobuf' ]
5353
dependencies: [ lowest , highest ]
54-
timeout-minutes: [ '${{ inputs.test-timeout }}' ]
5554
include:
5655
- os: windows-latest
5756
extensions-suffix: ', protobuf'

0 commit comments

Comments
 (0)