Skip to content

Commit

Permalink
DEBUG: Grant privileges to MySQL user
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyMcCormick committed Aug 6, 2024
1 parent 1ea66ff commit 3b3a95e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Grant privileges to MySQL user
run: |
mysql -u root -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'rubin'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES;"
mysql -h 127.0.0.1 -P 3306 -u root -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'rubin'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES;"
- name: Set engine URL
run: echo "FELIS_ENGINE_URL=mysql+pymysql://rubin:rubin@localhost:3306" >> $GITHUB_ENV
Expand Down

0 comments on commit 3b3a95e

Please sign in to comment.