From 93e37b537e3fb926c29396c9fc81f23a8fa49816 Mon Sep 17 00:00:00 2001 From: Joseph Burling Date: Thu, 21 Apr 2022 15:44:55 -0500 Subject: [PATCH] ci(workflow): :green_heart: no jinja escaping --- .../.github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datajoint-workflow/{{cookiecutter.github_repo}}/.github/workflows/run-tests.yml b/datajoint-workflow/{{cookiecutter.github_repo}}/.github/workflows/run-tests.yml index cb6fea5..4486851 100644 --- a/datajoint-workflow/{{cookiecutter.github_repo}}/.github/workflows/run-tests.yml +++ b/datajoint-workflow/{{cookiecutter.github_repo}}/.github/workflows/run-tests.yml @@ -38,7 +38,7 @@ jobs: key_append: test-${{ matrix.python-version }} - name: 🐍 Build all package dependencies and run entrypoint script - run: nox --force-python ${{"{{"}} matrix.python-version {{"}}"}} -s main_cli -v --non-interactive + run: nox --force-python ${{ matrix.python-version }} -s main_cli -v --non-interactive - name: 🐍 Run pytest run: nox --force-python ${{ matrix.python-version }} -s pytest -v --non-interactive