Skip to content

Commit 4a441c1

Browse files
committed
get info about sqlite version
1 parent 517cb64 commit 4a441c1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,10 @@ jobs:
8181
cache: 'pip'
8282

8383
# Display the Python version being used
84-
- name: Display Python version
85-
run: python -c "import sys; print(sys.version)"
84+
- name: Display Python and key module versions
85+
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)"
8688
8789
# Install the databases
8890
- name: Install mysql/mariadb

0 commit comments

Comments
 (0)