Skip to content

Fix macOS proxy autostart durability #19

Fix macOS proxy autostart durability

Fix macOS proxy autostart durability #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Python ${{ matrix.python-version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install --editable .
- name: Compile sources
run: python -m compileall -q src tests
- name: Run tests
run: python -m unittest discover -s tests -p "test_*.py"
- name: Check CLI entrypoints
run: |
python -m codex_fast_proxy --help
python -m codex_fast_proxy serve --help
- name: Build wheel
run: python -m pip wheel --no-deps --wheel-dir dist .