Skip to content

Commit

Permalink
Minor tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
renatonascalves committed May 31, 2024
1 parent 638e39a commit 7ead4e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:

- name: Setup MySQL Server
id: setup-mysql
uses: shogo82148/actions-setup-mysql@v1.34.0
uses: shogo82148/actions-setup-mysql@v1
with:
mysql-version: '${{ matrix.mysql }}'
mysql-version: ${{ matrix.mysql }}
auto-start: true
distribution: 'mysql'
root-password: root
Expand All @@ -67,14 +67,14 @@ jobs:
- name: Prepare tests
env:
WP_VERSION: '${{ matrix.wp_version }}'
WP_VERSION: ${{ matrix.wp_version }}
WP_CLI_TEST_DBTYPE: 'mysql'
WP_CLI_TEST_DBSOCKET: '${{ steps.setup-mysql.outputs.base-dir }}/tmp/mysql.sock'
run: composer prepare-tests

- name: Run Behat
env:
WP_VERSION: '${{ matrix.wp_version }}'
WP_VERSION: ${{ matrix.wp_version }}
WP_CLI_TEST_DBTYPE: 'mysql'
WP_CLI_TEST_DBSOCKET: '${{ steps.setup-mysql.outputs.base-dir }}/tmp/mysql.sock'
run: composer behat || composer behat-rerun

0 comments on commit 7ead4e2

Please sign in to comment.