From f7e5a3d4221c33f2e8cec27da06ab3a858aedf8e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 5 Sep 2023 11:53:30 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(test.yml):=20update=20POET?= =?UTF-8?q?RY=5FVERSION=20environment=20variable=20to=20"1.5.0"=20to=20use?= =?UTF-8?q?=20the=20latest=20version=20of=20Poetry=20=F0=9F=94=92=20chore(?= =?UTF-8?q?test.yml):=20add=20OPENAI=5FAPI=5FKEY=20environment=20variable?= =?UTF-8?q?=20to=20securely=20store=20the=20OpenAI=20API=20key?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e009534c2..bc2e193c6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: branches: [dev] env: - POETRY_VERSION: "1.4.0" + POETRY_VERSION: "1.5.0" jobs: build: @@ -16,6 +16,8 @@ jobs: matrix: python-version: - "3.10" + env: + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} steps: - uses: actions/checkout@v3 - name: Install poetry