From a8b67613ec80a6750f0674bd385a0ff5e7ced909 Mon Sep 17 00:00:00 2001 From: Adrien DELSALLE Date: Wed, 20 Oct 2021 11:11:05 +0200 Subject: [PATCH] try to add $ symbol --- .github/workflows/options.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/options.yml b/.github/workflows/options.yml index da83edc8..f15df980 100644 --- a/.github/workflows/options.yml +++ b/.github/workflows/options.yml @@ -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 @@ -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'