From 2cff2471b7b5aa9f737dcb230d5882ceeb63753d Mon Sep 17 00:00:00 2001 From: Shroominic Date: Wed, 22 Nov 2023 21:07:00 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Separate=20rye=20installation=20?= =?UTF-8?q?steps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/code-check.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml index e1ff069..342a56d 100644 --- a/.github/workflows/code-check.yml +++ b/.github/workflows/code-check.yml @@ -14,7 +14,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install rye and dependencies - run: script -q -e -c "curl -sSf https://rye-up.com/get | bash && rye sync" + run: curl -sSf https://rye-up.com/get | bash + - name: Sync rye + run: rye sync - name: Run pre-commit run: rye run pre-commit run --all-files - name: Run tests