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 59681b9 commit 2c21b3dCopy full SHA for 2c21b3d
.github/workflows/ci-test.yml
@@ -198,12 +198,15 @@ jobs:
198
run: |
199
python ./setup.py build_doc
200
201
- - name: test if command
202
- if: matrix.python_version == '3.10' && matrix.os == 'ubuntu-latest'
+ - name: show matrix vars
203
204
env
205
- echo "{{ matrix.python_version }}"
206
- echo "{{ matrix.os }}"
+ echo "${{ matrix.python_version }}"
+ echo "${{ matrix.os }}"
+
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
211
#- name: test docker build current version ubuntu-latest
212
# if: {{ matrix.python_version == "3.10" && matrix.os == "ubuntu-latest" }}
0 commit comments