Skip to content

Commit

Permalink
Fix CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoremo committed Dec 12, 2024
1 parent faf98a4 commit fa9f5c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
mysql password: ${{ env.DB_PASSWORD }}
- name: Create database
run: |
mysql -u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }} -P 3306 -e 'CREATE DATABASE ${{ env.DB_DATABASE }};'
mysql -u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }} -P 3306 -h 127.0.0.1 -e 'CREATE DATABASE ${{ env.DB_DATABASE }};'
- name: Run rake tests
uses: nick-fields/retry@v2
with:
Expand Down

0 comments on commit fa9f5c7

Please sign in to comment.