From 7e41bf35c54a824bb3384837e545557a6f6fe248 Mon Sep 17 00:00:00 2001 From: Young-Ho Kim Date: Thu, 14 Mar 2024 09:27:43 +0900 Subject: [PATCH] Update ci.yml to include poetry --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08199fc..aee491e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,11 +12,22 @@ permissions: jobs: main: + strategy: + matrix: + python-version: ["3.11"] + poetry-version: ["1.7.1"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 + - uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Run image + uses: abatilo/actions-poetry@v2 + with: + poetry-version: ${{ matrix.poetry-version }} # Connect your workspace on nx.app and uncomment this to enable task distribution. # The "--stop-agents-after" is optional, but allows idle agents to shut down once the "e2e-ci" targets have been requested