Bump openai from 1.41.0 to 1.54.4 #190
Workflow file for this run
This file contains 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: Lint and Test | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
id: cpython3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: requirements.txt | |
allow-prereleases: true | |
- run: pip install -e '.[lint]' | |
- run: ruff check . | |
- name: Run mypy (pytype on 3.11) | |
run: | | |
if [[ '${{ steps.cpython3.outputs.python-version }}' == *"3.11"* ]]; then | |
pip install pytype | |
pytype -j auto podcast_chapter_tools | |
else | |
mypy podcast_chapter_tools | |
fi | |
- uses: psf/black@stable | |
with: | |
options: "--check --verbose" | |
- run: pyroma . --min=10 |