ENH: use limited C API to produce abi3 wheels for with-GIL interpreters in release builds #266
Workflow file for this run
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: Style checks | |
| on: | |
| push: | |
| branches: | |
| - v1.** | |
| pull_request: | |
| branches: | |
| - main | |
| - v1.** | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.13"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install packages | |
| run: | | |
| pip install --upgrade pip | |
| pip install pre-commit | |
| pip list | |
| - name: Lint | |
| run: pre-commit run --all-files --show-diff-on-failure --color always |