Bump types-setuptools from 80.9.0.20250822 to 80.9.0.20251223 #771
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: Continuous Integration | |
| on: | |
| push: | |
| branches: [ "main", "dev" ] | |
| pull_request: | |
| branches: [ "main", "dev" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: python -m pip install --upgrade pip | |
| - name: Run set_up_dev_environment.py | |
| run: python scripts/set_up_dev_environment.py | |
| - name: Api code generator | |
| if: always() | |
| run: python scripts/lint_tools.py --verify | |
| - name: Black | |
| if: always() | |
| run: python scripts/lint_tools.py --black_check | |
| - name: Mypy | |
| if: always() | |
| run: python scripts/lint_tools.py --mypy | |
| - name: Pylint | |
| if: always() | |
| run: python scripts/lint_tools.py --pylint | |
| - name: Pycodestyle | |
| if: always() | |
| run: python scripts/lint_tools.py --py_code_style | |
| - name: Test setup | |
| if: always() | |
| run: python scripts/test_setup.py | |
| - name: Test pytest no_account | |
| if: always() | |
| run: python -m pytest -m no_account | |
| - name: Pdoc3 | |
| if: always() | |
| run: python scripts/lint_tools.py --pdoc3 | |
| - name: Build | |
| if: always() | |
| run: python scripts/build_tool.py |