We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89dd6d0 commit 97232baCopy full SHA for 97232ba
.github/workflows/ci.yml
@@ -88,15 +88,20 @@ jobs:
88
CACHE_DIR: 'C:\Downloads'
89
TOOLS_DIR: 'C:\tools'
90
91
- - name: Run Tests for Zephir Parser
+ - name: Setup Tests
92
shell: bash
93
run: |
94
- php --ri zephir_parser
95
if [ "${{ runner.os }}" = "Windows" ]; then
96
- TEST_PHP_EXECUTABLE=C:\tools\php\php.exe php run-tests.php -q
+ echo "TEST_PHP_EXECUTABLE=C:\tools\php\php.exe" >> $GITHUB_ENV
97
else
98
- TEST_PHP_EXECUTABLE=$(which php) php run-tests.php -q
+ echo "TEST_PHP_EXECUTABLE=$(which php)" >> $GITHUB_ENV
99
fi
+
100
+ - name: Run Tests for Zephir Parser
101
+ shell: bash
102
+ run: |
103
+ php --ri zephir_parser
104
+ php run-tests.php -q
105
env:
106
NO_INTERACTION: 1
107
REPORT_EXIT_STATUS: 1
0 commit comments