Skip to content

Commit 7b6cb94

Browse files
committed
move test to top so I don't have to wait.
1 parent 2c21b3d commit 7b6cb94

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci-test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@ jobs:
7171
- name: check file type of js
7272
run: grep js /etc/mime.types
7373

74+
- name: show matrix vars
75+
run: |
76+
env
77+
echo "${{ matrix.python_version }}"
78+
echo "${{ matrix.os }}"
79+
80+
- name: test if statement
81+
if: matrix.python_version == '3.10' && matrix.os == 'ubuntu-latest'
82+
run: echo "I ran so far awaaay"
83+
7484
# Display the Python version being used
7585
- name: Display Python version
7686
run: python -c "import sys; print(sys.version)"
@@ -198,16 +208,6 @@ jobs:
198208
run: |
199209
python ./setup.py build_doc
200210

201-
- name: show matrix vars
202-
run: |
203-
env
204-
echo "${{ matrix.python_version }}"
205-
echo "${{ matrix.os }}"
206-
207-
- name: test if statement
208-
if: matrix.python_version == '3.10' && matrix.os == 'ubuntu-latest'
209-
run: echo "I ran so far awaaay"
210-
211211
#- name: test docker build current version ubuntu-latest
212212
# if: {{ matrix.python_version == "3.10" && matrix.os == "ubuntu-latest" }}
213213
# run: |

0 commit comments

Comments
 (0)