Skip to content

Add TikTok and Facebook as community extras #89

Add TikTok and Facebook as community extras

Add TikTok and Facebook as community extras #89

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
name: Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Matches the floor this project's dependencies actually require (playwright,
# google-auth-oauthlib, and google-auth-httplib2 all declare >=3.10) through the
# latest stable release. See README.md's Install section.
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Syntax check
run: python -m compileall -q auth doctor.py tests
- name: Run tests
run: pytest -v