Skip to content

Commit

Permalink
initial test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
janickr committed Jul 22, 2024
1 parent 15008b8 commit 041f8df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
# mysql -e "GRANT CREATE, ALTER, DROP, INSERT, UPDATE, DELETE, SELECT, REFERENCES, RELOAD on *.* TO 'test_db'@'localhost' WITH GRANT OPTION;" -u root -p root
- name: Create the myprotosql stored procedures
run: |
mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uroot -ptest_db < ./myproto.sql
mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uroot -ptest_db < ./build/myproto_descriptors.sql
mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uroot -ptest_db ptest_db < ./myproto.sql
mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uroot -ptest_db ptest_db < ./build/myproto_descriptors.sql
- name: Test with pytest
run: |
cd tests
Expand Down

0 comments on commit 041f8df

Please sign in to comment.