From a985a4d0302421d6cfe3ceb775e7d0e6475e7b1f Mon Sep 17 00:00:00 2001 From: Rehan Khwaja Date: Mon, 13 May 2024 00:07:45 -0400 Subject: [PATCH] Use GitHub action to install poetry --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6daba0..2b51175 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,9 +23,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install poetry + uses: abatilo/actions-poetry@v3 - name: Dependencies run: | - curl -sSL https://install.python-poetry.org | python - poetry config virtualenvs.create false poetry install - name: Lint