From d2d5532d45b72c7d5809c56a37d3dd08e047bb36 Mon Sep 17 00:00:00 2001 From: HikariLan Date: Wed, 3 Jul 2024 17:05:50 +0800 Subject: [PATCH] ci: install deps --- .../check-format-and-test-python-markdown-extension.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-format-and-test-python-markdown-extension.yml b/.github/workflows/check-format-and-test-python-markdown-extension.yml index 84f71299..a206d873 100644 --- a/.github/workflows/check-format-and-test-python-markdown-extension.yml +++ b/.github/workflows/check-format-and-test-python-markdown-extension.yml @@ -21,7 +21,9 @@ jobs: working-directory: python-markdown-extension - run: | cd python-markdown-extension - rye fmt --check + rye sync + name: Install Dependencies + - run: rye fmt --check name: Check Format test: name: Test PR @@ -36,5 +38,7 @@ jobs: working-directory: python-markdown-extension - run: | cd python-markdown-extension - rye run test + rye sync + name: Install Dependencies + - run: rye run test name: Run Tests