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