Skip to content

Commit

Permalink
Disable encryption for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vokomarov committed Apr 19, 2023
1 parent 1f32531 commit 7eba8d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.actions
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DEBUG=false
ENCRYPTER_KEY={encrypt-key}
DB_ENCRYPTER_KEY={encrypt-key}
DB_ENCRYPTER_KEY=
SAFE_MIGRATIONS=true
VERBOSITY_LEVEL=basic
MONOLOG_DEFAULT_CHANNEL=default
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
php app.php migrate
- name: Run PHPUnit
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml --stop-on-failure
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml

- name: Upload Coverage To Codecov
continue-on-error: true
Expand Down
1 change: 1 addition & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@
<env name="MONOLOG_DEFAULT_CHANNEL" value="default"/>
<env name="CACHE_STORAGE" value="file"/>
<env name="SCHEDULER_MUTEX_CACHE_STORAGE" value="file"/>
<env name="DB_ENCRYPTER_KEY" value=""/>
</php>
</phpunit>

0 comments on commit 7eba8d6

Please sign in to comment.