Skip to content

Build(deps-dev): Bump twisted from 25.5.0 to 26.4.0rc2 #14

Build(deps-dev): Bump twisted from 25.5.0 to 26.4.0rc2

Build(deps-dev): Bump twisted from 25.5.0 to 26.4.0rc2 #14

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["main"]
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
env:
AZURE_OPENAI_API_KEY: dummy
AZURE_OPENAI_ENDPOINT: https://example.openai.azure.com/
AZURE_OPENAI_MODEL_NAME: gpt-4o
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME: dummy
AZURE_OPENAI_API_VERSION: 2024-12-01-preview
AZURE_AI_SERVICE_API_KEY: dummy
AZURE_AI_SERVICE_ENDPOINT: https://example.cognitiveservices.azure.com/
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: python -m pip install --upgrade pip poetry
- name: Install dependencies
run: poetry install --with dev --no-interaction
- name: Run tests
run: poetry run pytest -m "not api_key_required"