From 2c6290057773c22b12faa89b7b681d8e96970076 Mon Sep 17 00:00:00 2001 From: Rehan Khwaja Date: Sat, 18 May 2024 22:23:41 -0700 Subject: [PATCH] Use github action to install poetry --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bcbe68..6e25795 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,17 +40,18 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12.0"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + 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 - --version 1.5.1 poetry config virtualenvs.create false poetry install - name: Lint