diff --git a/.github/workflows/lint_and_test.yml b/.github/workflows/lint_and_test.yml index 9448b71..b900df9 100644 --- a/.github/workflows/lint_and_test.yml +++ b/.github/workflows/lint_and_test.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - python: ["38", "39", "310", "311", "312"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12"] name: typecheck (python ${{ matrix.python }}) steps: - name: Checkout 🛎️ @@ -34,6 +34,11 @@ jobs: with: persist-credentials: false + - name: Setup python 🐍 + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python }} + - name: Install dependencies ☕️ run: | pip install -U pip setuptools @@ -47,7 +52,7 @@ jobs: strategy: fail-fast: false matrix: - python: ["37", "38", "39", "310", "311", "312"] + python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] name: unittest (python ${{ matrix.python }}) steps: - name: Checkout 🛎️ @@ -55,6 +60,11 @@ jobs: with: persist-credentials: false + - name: Setup python 🐍 + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python }} + - name: Install dependencies ☕️ run: | pip install -U pip setuptools