Skip to content

Commit a5111fe

Browse files
committed
Add env variables.
1 parent 99b21d4 commit a5111fe

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/reusable-codeception-tests.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ name: "Codeception tests"
22

33
on:
44
workflow_call:
5+
inputs:
6+
workflow_id:
7+
PIMCORE_PROJECT_ROOT:
8+
required: true
9+
APP_ENV:
10+
required: true
11+
PIMCORE_TEST:
12+
required: true
513
secrets:
614
COMPOSER_PIMCORE_REPO_PACKAGIST_TOKEN:
715
required: true
@@ -15,6 +23,9 @@ jobs:
1523
continue-on-error: ${{ matrix.experimental }}
1624
env:
1725
PIMCORE_TEST_DB_DSN: "mysql://[email protected]:33006/pimcore_test?serverVersion=${{ matrix.server_version }}"
26+
PIMCORE_PROJECT_ROOT: ${{ inputs.PIMCORE_PROJECT_ROOT }}
27+
APP_ENV: ${{ inputs.APP_ENV }}
28+
PIMCORE_TEST: ${{ inputs.PIMCORE_TEST }}
1829
strategy:
1930
matrix:
2031
include:

0 commit comments

Comments
 (0)