Skip to content

Commit

Permalink
Allow false to be used
Browse files Browse the repository at this point in the history
  • Loading branch information
srtfisher committed Feb 21, 2024
1 parent e0f28b3 commit d9326dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
timeout-minutes: 10
services:
mysql:
image: ${{ inputs.database }}
image: ${{ inputs.database == 'false' && '' || inputs.database }}
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
ports:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ Run a set of Composer scripts against your project. Assumes that `composer run

- Specify the database image to use.
- Accepts a string.
- Defaults to `'mysql:8.0'`. Can be disabled by setting to `false`.
- Defaults to `'mysql:8.0'`. Can be disabled by setting it to `false`.

##### `working-directory`

Expand Down

0 comments on commit d9326dd

Please sign in to comment.