Fix checking of match sequence pattern against bounded type variables… #2610
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: Trigger wheel build | |
| on: | |
| push: | |
| branches: [main, master, 'release*'] | |
| tags: ['*'] | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-wheels: | |
| if: github.repository == 'python/mypy' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Trigger script | |
| env: | |
| WHEELS_PUSH_TOKEN: ${{ secrets.WHEELS_PUSH_TOKEN }} | |
| run: ./misc/trigger_wheel_build.sh |