Skip to content

Bump semantic-kernel from 1.1.2 to 1.9.0 in the python-requirements group across 1 directory #22

Bump semantic-kernel from 1.1.2 to 1.9.0 in the python-requirements group across 1 directory

Bump semantic-kernel from 1.1.2 to 1.9.0 in the python-requirements group across 1 directory #22

name: Run Python Unit tests
on:
push:
branches: [ main ]
paths:
- "**.py"
- "src/requirements.txt"
- "src/requirements.in"
- "src/pyproject.toml"
pull_request:
branches: [ main ]
paths:
- "**.py"
- "src/requirements.txt"
- "src/requirements.in"
- "src/pyproject.toml"
jobs:
test_package:
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python_version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
python3 -m pip install -e src
- name: Run tests
run: python3 -m pytest