diff --git a/.github/workflows/ci_job.yml b/.github/workflows/ci_job.yml index 237b7df..21665fb 100644 --- a/.github/workflows/ci_job.yml +++ b/.github/workflows/ci_job.yml @@ -8,7 +8,7 @@ jobs: NUMEXPR_MAX_THREADS: 8 runs-on: ubuntu-latest strategy: - python-version: + matrix: python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] steps: - @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{matrix.python-versoin}} -