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 1e47047 commit 324dc3aCopy full SHA for 324dc3a
.github/workflows/ci-test.yml
@@ -68,18 +68,15 @@ jobs:
68
python-version: ${{ matrix.python-version }}
69
cache: 'pip'
70
71
- - name: check file type of js
72
- run: grep js /etc/mime.types
73
-
74
- name: show matrix vars
75
run: |
+ echo 1. "${{ matrix.python-version }}"
+ echo 2. "$PYTHON_VERSION"
+ echo 3. "${{ matrix.os }}"
76
env
77
- echo "${{ matrix.python_version }}"
78
- echo "$PYTHON_VERSION"
79
- echo "${{ matrix.os }}"
80
81
- name: test if statement
82
- if: matrix.python_version == '3.10' && matrix.os == 'ubuntu-latest'
+ if: matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'
83
run: echo "I ran so far awaaay"
84
85
- name: test if statement os only
0 commit comments