Skip to content

Commit d11ea2f

Browse files
committed
action: Print version_info
1 parent 87a2635 commit d11ea2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/windows.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ jobs:
8282
run: |
8383
ls -la
8484
py -3.8 -m pip install --no-index --find-links . mysqlclient
85-
py -3.8 -c "import MySQLdb"
85+
py -3.8 -c "import MySQLdb; print(MySQLdb.version_info)"
8686
py -3.7 -m pip install --no-index --find-links . mysqlclient
87-
py -3.7 -c "import MySQLdb"
87+
py -3.7 -c "import MySQLdb; print(MySQLdb.version_info)"
8888
py -3.6 -m pip install --no-index --find-links . mysqlclient
89-
py -3.6 -c "import MySQLdb"
89+
py -3.6 -c "import MySQLdb; print(MySQLdb.version_info)"
9090

0 commit comments

Comments
 (0)