diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6721cb7..13a9c9c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,20 +22,23 @@ jobs: needs: ["prepare"] runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install poetry run: | python -m pip install --upgrade pip python -m pip install poetry + - if: matrix.python-version == "3.13" + run: poetry install numpy - name: Install dependencies run: | poetry install --only main,test --no-interaction @@ -43,7 +46,7 @@ jobs: run: | poetry run pytest --cov --cov-report=term --cov-report=json -v - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.0.1 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} slug: ozekik/plateaukit