From 34f556c15f34c9547057f162b46c99c47d8ab4ca Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Wed, 12 Jul 2023 20:40:39 +0100 Subject: [PATCH] docs: Use double quotes instead of single in GitHub Actions examples (#724) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If you use parametrized tests they will include single quotes, breaking the output 😊 --- docs/cookbook.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cookbook.rst b/docs/cookbook.rst index dcfb5479..26f45d59 100644 --- a/docs/cookbook.rst +++ b/docs/cookbook.rst @@ -162,4 +162,4 @@ Nox knows what sessions it needs to run. Why not tell GitHub Actions what jobs t steps: - uses: actions/checkout@v3 - uses: wntrblm/nox@main - - run: nox -s '${{ matrix.session }}' + - run: nox -s "${{ matrix.session }}"