chore(deps): bump pypa/cibuildwheel from 3.3.1 to 3.4.1 #124
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: | |
| pull_request: | |
| jobs: | |
| test: | |
| 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 uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| - name: Install dependencies (with dev extras) | |
| run: | | |
| uv sync --extra dev | |
| - name: Run linting | |
| run: | | |
| make lint | |
| - name: Run tests | |
| run: | | |
| uv run pytest --cov=gakido --cov-report=term-missing --cov-fail-under=60 |