Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 6903:02d91a31ed9a
swap _ for - in matrix.python-version
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 01 Sep 2022 15:45:38 -0400 |
| parents | 3871eeafe73c |
| children | 92b64fd3341f |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Thu Sep 01 15:38:57 2022 -0400 +++ b/.github/workflows/ci-test.yml Thu Sep 01 15:45:38 2022 -0400 @@ -68,18 +68,15 @@ python-version: ${{ matrix.python-version }} cache: 'pip' - - name: check file type of js - run: grep js /etc/mime.types - - name: show matrix vars run: | + echo 1. "${{ matrix.python-version }}" + echo 2. "$PYTHON_VERSION" + echo 3. "${{ matrix.os }}" env - echo "${{ matrix.python_version }}" - echo "$PYTHON_VERSION" - echo "${{ matrix.os }}" - name: test if statement - if: matrix.python_version == '3.10' && matrix.os == 'ubuntu-latest' + if: matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest' run: echo "I ran so far awaaay" - name: test if statement os only
