From 10a88840de70119256b9a0f7869bd34c03cdba7a Mon Sep 17 00:00:00 2001 From: Shroominic Date: Wed, 22 Nov 2023 19:06:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20rye=20installation=20co?= =?UTF-8?q?mmand?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/code-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml index 0818e67..e1ff069 100644 --- a/.github/workflows/code-check.yml +++ b/.github/workflows/code-check.yml @@ -13,8 +13,8 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Install poetry and dependencies - run: curl -sSf https://rye-up.com/get | bash && rye sync + - name: Install rye and dependencies + run: script -q -e -c "curl -sSf https://rye-up.com/get | bash && rye sync" - name: Run pre-commit run: rye run pre-commit run --all-files - name: Run tests