diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bcbe68..200c139 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,17 +40,20 @@ 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 + with: + poetry-version: 1.5.1 - name: Dependencies run: | - curl -sSL https://install.python-poetry.org | python - --version 1.5.1 poetry config virtualenvs.create false poetry install - name: Lint