From 32f50aa8fdd02e261f9facecb1504445d449c73c Mon Sep 17 00:00:00 2001 From: TheTechromancer Date: Mon, 13 Nov 2023 14:37:48 -0500 Subject: [PATCH] run tests for multiple versions of python --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bfca0d67d..f02837b14 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,12 +31,15 @@ jobs: test: needs: lint runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | pip install poetry