diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 702f54f..b31212d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,6 +7,11 @@ on: jobs: test: runs-on: ubuntu-latest + + strategy: + matrix: + python-version: ["3.10", "3.11", "3.12", "3.13"] + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -14,7 +19,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.x" + python-version: ${{ matrix.python-version }} - name: Install dependencies run: |