build(deps-dev): update pytest requirement from >=9.0.3 to >=9.1.0 #345
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: Check PR using Sourcery | |
| permissions: | |
| contents: read | |
| on: pull_request | |
| jobs: | |
| review-with-sourcery: | |
| # Secrets are not available for PRs from forks, so skip Sourcery in that case. | |
| if: github.event.pull_request.head.repo.full_name == github.repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: '3.11' | |
| - uses: sourcery-ai/action@v1 | |
| with: | |
| token: ${{ secrets.WIFITE }} | |
| diff_ref: ${{ github.event.pull_request.base.sha }} |