8000 [WIP][POC] Run Windows tests on GitHub Action by wouterj · Pull Request #58699 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WIP][POC] Run Windows tests on GitHub Action #58699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 32 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Debug
  • Loading branch information
wouterj committed Oct 29, 2024
commit 1286f3cdd3d1a92075c15d50da85c780635b58d9
11 changes: 11 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,21 @@ jobs:

- name: Install dependencies
run: |
$env:SYMFONY_VERSION >> $env:GITHUB_OUTPUT
$env:COMPOSER_ROOT_VERSION >> $env:GITHUB_OUTPUT

$env:Path = 'c:\php;' + $env:Path
"::group::composer update" >> $env:GITHUB_OUTPUT
php composer.phar update --no-progress --ansi
"::endgroup::" >> $env:GITHUB_OUTPUT

"::group::phpunit install" >> $env:GITHUB_OUTPUT
php phpunit install
"::endgroup::" >> $env:GITHUB_OUTPUT

"::group::memurai-developer install" >> $env:GITHUB_OUTPUT
choco install memurai-developer
"::endgroup::" >> $env:GITHUB_OUTPUT

- name: Run tests
run: |
Expand Down
Loading
0