fix: changing directory before sql injection
This commit is contained in:
parent
8b302e8187
commit
fa6f478f94
1 changed files with 2 additions and 2 deletions
4
.github/workflows/generate_examples.yml
vendored
4
.github/workflows/generate_examples.yml
vendored
|
@ -39,12 +39,12 @@ jobs:
|
|||
- name: Test database is Up and Running
|
||||
run: |
|
||||
sleep 5s
|
||||
cd test_db
|
||||
netstat -ltpn
|
||||
sudo netstat -ltpn
|
||||
mysql -e 'select version();'
|
||||
|
||||
- name: Injecting test_db dataset
|
||||
run: |
|
||||
cd test_db
|
||||
mysql -e 'CREATE DATABASE data;'
|
||||
mysql data< ./employees.sql
|
||||
cd -
|
||||
|
|
Loading…
Reference in a new issue