Skip to content

Commit fbc1ce8

Browse files
authored
Merge branch 'master' into ayfif
2 parents 5b4736a + c665542 commit fbc1ce8

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,26 @@ jobs:
8181
- uses: actions/checkout@v2
8282
- name: Set up ${{ matrix.python.name }}
8383
if: ${{ job.container == '' }}
84-
uses: actions/setup-python@v1
84+
uses: actions/setup-python@v2
8585
with:
8686
python-version: ${{ matrix.python.action }}
8787
architecture: x64
88+
- name: Report Python information
89+
shell: bash
90+
run: |
91+
python -c 'import sys; print(sys.version)'
92+
echo
93+
echo " <=======>"
94+
echo
95+
pip --version
96+
echo
97+
echo " <=======>"
98+
echo
99+
pip list --no-python-version-warning
100+
echo
101+
echo " <=======>"
102+
echo
103+
pip freeze --all --no-python-version-warning
88104
- name: Install Linux Qt5 dependencies
89105
if: matrix.os.python_platform == 'linux' && matrix.reactor.dependencies == 'qt5'
90106
run: |
@@ -107,7 +123,7 @@ jobs:
107123
steps:
108124
- uses: actions/checkout@v2
109125
- name: Set up Python ${{ matrix.python.dotted }}
110-
uses: actions/setup-python@v1
126+
uses: actions/setup-python@v2
111127
with:
112128
python-version: ${{ matrix.python.dotted }}
113129
architecture: x64

0 commit comments

Comments
 (0)