From f05a59d7f0c43105c55b79ca2a238c1bf8b4f59c Mon Sep 17 00:00:00 2001 From: JuHyung Son Date: Mon, 5 Aug 2024 12:38:49 +0900 Subject: [PATCH] Update _integration_test.yml (#18) --- .github/workflows/_integration_test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_integration_test.yml b/.github/workflows/_integration_test.yml index d4b7ac3..fa99a6a 100644 --- a/.github/workflows/_integration_test.yml +++ b/.github/workflows/_integration_test.yml @@ -17,7 +17,14 @@ jobs: run: working-directory: ${{ inputs.working-directory }} runs-on: ubuntu-latest - name: Python ${{ inputs.python-version }} + strategy: + matrix: + python-version: + - "3.8" + - "3.9" + - "3.10" + - "3.11" + name: "poetry run pytest tests/integration_tests #${{ matrix.python-version }}" steps: - uses: actions/checkout@v4