WIP: try removing dependency of pyo3-macros-backend on pyo3-build-config
#9837
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: changelog | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled, unlabeled, edited] | |
| jobs: | |
| check: | |
| name: Check changelog entry | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| - run: python -m pip install --upgrade pip && pip install nox[uv] | |
| - run: nox -s check-changelog |