Skip to content

Bump g4f[openai,webdriver] from 0.3.6.5 to 0.3.8.0 #383

Bump g4f[openai,webdriver] from 0.3.6.5 to 0.3.8.0

Bump g4f[openai,webdriver] from 0.3.6.5 to 0.3.8.0 #383

Workflow file for this run

name: G4F API
on: [push]
jobs:
build:
name: Test and Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run tests
run: python -m pytest -n 10 tests/
# Run pre commit checks
- uses: pre-commit/action@v3.0.0
id: pre-commit-check
name: Pre Commit Checks