From 0de698bfb8b2fb097271238cca3915c69da79205 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Sat, 8 Jul 2023 11:52:00 +0100 Subject: [PATCH] Use double quotes instead of single in github actions examples 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 }}"