From 2f7e9135047acb4aa5eb8528e6d50d48ffcc4882 Mon Sep 17 00:00:00 2001 From: Zachary Charlop-Powers Date: Sun, 10 Dec 2023 15:26:22 -0500 Subject: [PATCH] update lock --- .github/workflows/poetry-tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/poetry-tests.yml b/.github/workflows/poetry-tests.yml index 537b817..24d8908 100644 --- a/.github/workflows/poetry-tests.yml +++ b/.github/workflows/poetry-tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'], name: Python ${{ matrix.python-version }} tests @@ -35,7 +35,10 @@ jobs: - uses: abatilo/actions-poetry@v2.1.3 - name: install dependencies - run: poetry install + run: | + poetry lock + poetry install + - name: run tests run: poetry run pytest