You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/django.yaml
+16-12
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name: SQLAlchemy compat test
1
+
name: Django compat test
2
2
3
3
on:
4
4
push:
@@ -11,14 +11,15 @@ jobs:
11
11
- name: Start MySQL
12
12
run: |
13
13
sudo systemctl start mysql.service
14
-
mysql -uroot -proot -e "CREATE USER 'scott'@'%' IDENTIFIED BY 'tiger'; CREATE DATABASE test_schema CHARSET utf8mb4; GRANT ALL ON test_schema.* TO scott;"
14
+
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -uroot -proot mysql
15
+
mysql -uroot -proot -e "CREATE USER 'scott'@'%' IDENTIFIED BY 'tiger'; GRANT ALL ON *.* TO scott;"
0 commit comments