Skip to content

Commit

Permalink
fix: copy env command.
Browse files Browse the repository at this point in the history
loduis committed Dec 3, 2023
1 parent 6c4fcaf commit 6c7b656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ jobs:
command: composer update --no-interaction --no-progress

- name: Copy env
run: php -r "copy('./tests/.env.dist', './tests/.env')"
run: php -r 'copy("./tests/.env.dist", "./tests/.env");'

- name: Execute PHPUnit
run: vendor/bin/phpunit
@@ -73,7 +73,7 @@ jobs:
command: composer update --prefer-lowest --prefer-stable --no-interaction --no-progress

- name: Copy env
run: php -r "copy('./tests/.env.dist', './tests/.env')"
run: php -r 'copy("./tests/.env.dist", "./tests/.env");'

- name: Execute PHPUnit
run: vendor/bin/phpunit

0 comments on commit 6c7b656

Please sign in to comment.