Skip to content

Commit

Permalink
Fix Github Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamelso committed Jun 13, 2024
1 parent 0462a0e commit 2a3f7da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/symfony.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

- name: Execute canon unit tests via PhpSpec
run: bin/phpspec run --format=pretty --verbose --no-interaction
# - name: Execute canon unit tests via PhpSpec
# run: ./vendor/bin/phpspec run --format=pretty --verbose --no-interaction

# - name: Dogfooding via converting unit tests from PhpSpec to PHPUnit
# run: |
Expand All @@ -48,4 +48,4 @@ jobs:
# run: bin/phpunit --testdox

- name: 'Candidate conversion: Convert sylius/addressing unit tests from PhpSpec to PHPUnit, then run them'
run: php transunit.php vendor/sylius/addressing/spec var/sylius/addressing && phpunit var/sylius/addressing
run: php transunit.php vendor/sylius/addressing/spec var/sylius/addressing && ./vendor/bin/phpunit var/sylius/addressing
2 changes: 1 addition & 1 deletion lib/Transunit/Pass/ReplaceCallsToGetWrappedObjectPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ public function rewrite(Node $node): void

$node->name->name = 'reveal';
}
}
}

0 comments on commit 2a3f7da

Please sign in to comment.