Update dependency openai to v1.88.0 #2289
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
python-version: ${{ matrix.python-version }} | |
enable-cache: true | |
cache-dependency-glob: "requirements_dev.txt" | |
activate-environment: true | |
- name: Install dependencies | |
run: | | |
uv pip install -r requirements_dev.txt --prerelease=allow | |
- name: Prepare allenporter/home-assistant-synthetic-home | |
uses: actions/checkout@v4 | |
with: | |
repository: allenporter/home-assistant-synthetic-home | |
path: home-assistant-synthetic-home | |
sparse-checkout: | | |
custom_components | |
- name: Test with pytest | |
run: | | |
export PYTHONPATH="${PYTHONPATH}:./home-assistant-synthetic-home/" | |
touch secrets.yaml | |
pytest --cov=home_assistant_datasets --cov-report=term-missing | |
- uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
env_vars: OS,PYTHON | |
fail_ci_if_error: true | |
verbose: true |