From 05ce063626543160b08b6bc5f2abc9e4edfd8772 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 15 Feb 2024 15:31:31 -0300 Subject: [PATCH] Add Python 3.11 support to lint and test workflows --- .github/workflows/lint.yml | 1 + .github/workflows/test.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c6954377e..fb8efc8be 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,6 +16,7 @@ jobs: python-version: - "3.9" - "3.10" + - "3.11" steps: - uses: actions/checkout@v4 - name: Install poetry diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 081a975f1..d15ff80f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,9 @@ jobs: strategy: matrix: python-version: + - "3.9" - "3.10" + - "3.11" env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} steps: