File tree 1 file changed +13
-4
lines changed
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 35
35
uses : actions/checkout@v4
36
36
with :
37
37
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
39
39
path : ${{env.sample_code_php}}
40
40
41
41
- name : Setup PHP
60
60
echo "PHPUNIT_VERSION=$(echo 9.5.* | cut -c 1-6)" >> "$GITHUB_ENV"
61
61
fi
62
62
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
64
65
65
66
- name : Composer Update
66
67
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 .
You can’t perform that action at this time.
0 commit comments