Skip to content

Commit

Permalink
try to add $ symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
adriendelsalle committed Oct 20, 2021
1 parent c43d2c1 commit a8b6761
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
environment-file: environment.yml
environment-name: myenv
extra-specs: |
pytest={{ matrix.pytest }}
pytest=${{ matrix.pytest }}
python=3.8.8
- name: run python in powershell
Expand Down Expand Up @@ -72,12 +72,12 @@ jobs:
shell: powershell
run: |
pytest --version
python -c "import pytest; assert pytest.__version__.startswith({{ matrix.pytest }})"
python -c "import pytest; assert pytest.__version__.startswith(${{ matrix.pytest }})"
if: runner.os == 'Windows'

- name: check pytest version in bash
shell: bash -l {0}
run: |
pytest --version
python -c "import pytest; assert pytest.__version__.startswith({{ matrix.pytest }})"
python -c "import pytest; assert pytest.__version__.startswith(${{ matrix.pytest }})"
if: runner.os != 'Windows'

0 comments on commit a8b6761

Please sign in to comment.