feat(phases): show configuration progress bar #321
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: mypy | |
| on: | |
| push: | |
| paths: | |
| - '**/*.py' # Watch for changes in any Python files | |
| - 'pyproject.yml' # Watch for changes in the pyproject.yml file | |
| workflow_dispatch: | |
| release: | |
| types: [published] | |
| jobs: | |
| mypy: | |
| name: mypy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install 'mypy==1.15.0' 'types-requests==2.32.0.20241016' | |
| - name: Lint the code with mypy | |
| uses: sasanquaneuf/mypy-github-action@a3f3a66f97792cac0cfd11d3e5c87088e5c8f6a9 # releases/v1.3 | |
| with: | |
| checkName: 'mypy' # NOTE: this needs to be the same as the job name | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |