fix: add py.typed to runfiles py_wheel so it gets packaged (#3041) #4224
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: mypy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the code | |
| - uses: actions/checkout@v4 | |
| - uses: jpetrucciani/mypy-check@master | |
| with: | |
| requirements: 1.6.0 | |
| python_version: 3.9 | |
| path: 'python/runfiles' | |
| - uses: jpetrucciani/mypy-check@master | |
| with: | |
| requirements: 1.6.0 | |
| python_version: 3.9 | |
| path: 'tests/runfiles' |