Skip to content

Commit d63f48f

Browse files
committed
Added integration testing
1 parent 217a4f5 commit d63f48f

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/php-workflow.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@v4
3636
with:
3737
repository: 'authorizenet/sample-code-php'
38-
ref: 'master' # Remove this line before pushing to master branch
38+
ref: 'future' # Remove this line before pushing to master branch
3939
path: ${{env.sample_code_php}}
4040

4141
- name: Setup PHP
@@ -60,9 +60,18 @@ jobs:
6060
echo "PHPUNIT_VERSION=$(echo 9.5.* | cut -c 1-6)" >> "$GITHUB_ENV"
6161
fi
6262
63-
echo "${{env.PHPUNIT_VERSION}}"
63+
# Cannot use ${{env.PHPUNIT_VERSION}} in the same step where it is defined
64+
# Refer: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#example-of-writing-an-environment-variable-to-github_env
6465

6566
- name: Composer Update
6667
run: |
67-
echo "${{env.PHPUNIT_VERSION}}"
68-
# composer require "phpunit/phpunit:$phpunit_version" --no-update
68+
composer require "phpunit/phpunit:$phpunit_version" --no-update --dev
69+
composer update --prefer-dist
70+
71+
- name: Unit Testing
72+
run: |
73+
cd $sdk_php
74+
cp -R lib ../$sample_code_php/
75+
cp -R vendor ../$sample_code_php/
76+
cd ../$sample_code_php
77+
vendor/phpunit/phpunit/phpunit TestRunner.php .

0 commit comments

Comments
 (0)