Skip to content

Commit bf8634b

Browse files
jrfnlsebastianbergmann
authored andcommitted
GH Actions: actually run the tests on Windows
PR 3982 added test run builds against Windows OS. I'm not sure if this ever worked, but it sure isn't working now. The environment is created, but the actual steps to run things are not doing anything due to the command not being understood by Windows. This commit fixes that and allows the tests to actually run on Windows.
1 parent e4c3197 commit bf8634b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ jobs:
101101
tools: none
102102

103103
- name: Install dependencies with Composer
104-
run: ./tools/composer update --no-ansi --no-interaction --no-progress
104+
run: php ./tools/composer update --no-ansi --no-interaction --no-progress
105105

106106
- name: Run tests with PHPUnit
107-
run: ./phpunit --testsuite unit
107+
run: php ./phpunit --testsuite unit
108108

109109
end-to-end-tests:
110110
name: End-to-End Tests
@@ -151,10 +151,10 @@ jobs:
151151
tools: none
152152

153153
- name: Install dependencies with Composer
154-
run: ./tools/composer update --no-ansi --no-interaction --no-progress
154+
run: php ./tools/composer update --no-ansi --no-interaction --no-progress
155155

156156
- name: Run tests with PHPUnit
157-
run: ./phpunit --testsuite end-to-end
157+
run: php ./phpunit --testsuite end-to-end
158158

159159
code-coverage:
160160
name: Code Coverage

0 commit comments

Comments
 (0)