Improve README dashboard presentation #21
This file contains hidden or 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: 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 . |