We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 517cb64 commit 4a441c1Copy full SHA for 4a441c1
.github/workflows/ci-test.yml
@@ -81,8 +81,10 @@ jobs:
81
cache: 'pip'
82
83
# Display the Python version being used
84
- - name: Display Python version
85
- run: python -c "import sys; print(sys.version)"
+ - name: Display Python and key module versions
+ run: |
86
+ python -c "import sys; print('python version: ', sys.version)"
87
+ python -c "import sqlite; print('sqlite3 version, sqlite version: 'sqlite3.version, sqlite3.sqlite_version)"
88
89
# Install the databases
90
- name: Install mysql/mariadb
0 commit comments