Skip to content

Commit 2c21b3d

Browse files
committed
different test for if statement
1 parent 59681b9 commit 2c21b3d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci-test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,15 @@ jobs:
198198
run: |
199199
python ./setup.py build_doc
200200

201-
- name: test if command
202-
if: matrix.python_version == '3.10' && matrix.os == 'ubuntu-latest'
201+
- name: show matrix vars
203202
run: |
204203
env
205-
echo "{{ matrix.python_version }}"
206-
echo "{{ matrix.os }}"
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"
207210

208211
#- name: test docker build current version ubuntu-latest
209212
# if: {{ matrix.python_version == "3.10" && matrix.os == "ubuntu-latest" }}

0 commit comments

Comments
 (0)