diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml index ee92fca..0818e67 100644 --- a/.github/workflows/code-check.yml +++ b/.github/workflows/code-check.yml @@ -14,10 +14,10 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install poetry and dependencies - run: curl -sSL https://install.python-poetry.org | python3 - && poetry install + run: curl -sSf https://rye-up.com/get | bash && rye sync - name: Run pre-commit - run: poetry run pre-commit run --all-files + run: rye run pre-commit run --all-files - name: Run tests env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - run: poetry run pytest + run: rye run pytest