diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fad6856..51cfbf0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,14 +13,17 @@ jobs: PIP_DISABLE_PIP_VERSION_CHECK: 1 strategy: matrix: - python-version: ["3.7", "3.9", "3.11"] + python-version: ["3.8", "3.10", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + show-progress: false - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: + allow-prereleases: true python-version: ${{ matrix.python-version }} cache: "pip" cache-dependency-path: "requirements.txt" @@ -40,7 +43,7 @@ jobs: run: "python -m build ." - name: Upload distribution - if: matrix.python-version == '3.11' + if: matrix.python-version == '3.10' uses: actions/upload-artifact@v3 with: name: myloginpath-dist