From ed2e4bf70edf61fd32abad6302eaf04006458860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Spie=C3=9F?= Date: Mon, 18 Mar 2024 12:58:24 +0000 Subject: [PATCH] Run pipenv tests with Python version matrix --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 81e72f24..e8ae4a39 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -337,12 +337,15 @@ jobs: pipenv: runs-on: ubuntu-latest needs: core + strategy: + matrix: + python: [ '3.8', '3.10', '3.x' ] steps: - uses: actions/checkout@v4 - name: Setup python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: ${{ matrix.python }} architecture: x64 cache: pipenv - name: Set up Ruby