From 972a0e78ffdebf9e98f6fe404b77831716cdd4aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Tue, 23 Jul 2024 21:30:21 +0200 Subject: [PATCH] docs: Fix trailing whitespace --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 025c9b67..4add20d2 100644 --- a/README.md +++ b/README.md @@ -513,8 +513,8 @@ The directory to cache will depend on the operating system of the runner. Note that when the cache is hit, and the Install Poetry step is skipped, configuration options are not re-applied. The cached Poetry installation will now run with default settings. To make things work the same, you may add a dedicated configuration step to re-apply your configurations. For example: ```yaml -- name: Configure poetry - if: steps.cached-poetry.outputs.cache-hit == 'true' +- name: Configure poetry + if: steps.cached-poetry.outputs.cache-hit == 'true' run: poetry config virtualenvs.in-project true ```