Skip to content

[MNT] [Dependabot](deps): Update scikit-base requirement from ^0.8.1 to ^0.9.0 #247

[MNT] [Dependabot](deps): Update scikit-base requirement from ^0.8.1 to ^0.9.0

[MNT] [Dependabot](deps): Update scikit-base requirement from ^0.8.1 to ^0.9.0 #247

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- develop
- release/*
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Set PYTHONPATH
run: echo "PYTHONPATH=$GITHUB_WORKSPACE/src" >> $GITHUB_ENV
- name: Test with pytest
run: python -m pytest --cov=prophetverse --cov-report=xml -m "not smoke" --durations=10
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.5.0
with:
files: ./coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}