Skip to content

Commit

Permalink
Add mysql port num
Browse files Browse the repository at this point in the history
  • Loading branch information
thearyadev committed Oct 11, 2023
1 parent 748b854 commit 8cda2d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
run: sudo apt-get install -y mysql-client

- name: Add Testing Database
run: mysql -h localhost -u root -pdbtestpassword -e "CREATE DATABASE testing_ghworkflow_testdb;"
run: mysql -h localhost -u root -pdbtestpassword -P 3800 -e "CREATE DATABASE testing_ghworkflow_testdb;"

- name: Copy data into database
run: mysql -h localhost -u root -pdbtestpassword testing_ghworkflow_testdb < ./archive/latest.sql
run: mysql -h localhost -u root -pdbtestpassword -P 3800 testing_ghworkflow_testdb < ./archive/latest.sql


- name: Install Poetry
Expand Down

0 comments on commit 8cda2d7

Please sign in to comment.