File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 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: |
You can’t perform that action at this time.
0 commit comments