Skip to content

first init

first init #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run tests
run: |
python -m pytest -q
- name: Run ruff (lint)
run: |
python -m ruff check .
- name: Run mypy (type checks)
run: |
python -m mypy .
- name: Validate br support (brotli installed)
if: always()
run: |
python -m pip install brotli
python -m pytest tests/test_end_to_end.py::test_brotli_decoding -q || true