From 76a9d116d65eb0bd0d0003958dd1958a83d9c456 Mon Sep 17 00:00:00 2001 From: henrikstranneheim Date: Mon, 23 Sep 2024 09:04:12 +0200 Subject: [PATCH] feat(python): Update to 3.12 --- .github/workflows/Crunchy_CI.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Crunchy_CI.yml b/.github/workflows/Crunchy_CI.yml index a6447c6..a752755 100644 --- a/.github/workflows/Crunchy_CI.yml +++ b/.github/workflows/Crunchy_CI.yml @@ -5,16 +5,17 @@ jobs: test-coverage: name: Test Crunchy runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: ["3.12"] - steps: - name: Git checkout uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + + - name: Install and configure Poetry uses: snok/install-poetry@v1