docs: add remote codex setup guides #59
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: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: "${{ matrix.os }} / Python ${{ matrix.python-version }}" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| python-version: | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install tomli for Python < 3.11 | |
| if: ${{ matrix.python-version != '3.11' }} | |
| run: python3 -m pip install tomli | |
| - name: Run tracked secret scan | |
| run: make secrets-check | |
| - name: Run unit tests | |
| run: python3 -m unittest discover -s tests -p 'test*.py' -v | |
| - name: Run smoke validation | |
| run: make smoke |