Add mypy.ini configuration support #770
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| # * is a special character in YAML so you have to quote this string | |
| # Run at 1:00 every day | |
| - cron: 0 1 * * * | |
| permissions: {} | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| platform: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: '**/pyproject.toml' | |
| - name: Run tests (pyproject.toml config) | |
| run: | | |
| # We run tests against "." and not the tests directory as we test the README | |
| # and documentation. | |
| uv run --extra=dev --python=${{ matrix.python-version }} pytest -s -vvv --cov=src/ --cov=tests/ --ignore=tests/test_plugin_ini.yaml . | |
| - name: Run tests (mypy.ini config) | |
| run: | | |
| uv run --extra=dev --python=${{ matrix.python-version }} pytest -s -vvv --cov=src/ --cov=tests/ --cov-append --cov-fail-under 100 -o addopts= --mypy-only-local-stub --mypy-same-process tests/test_plugin_ini.yaml | |
| completion-ci: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| if: always() # Run even if one matrix job fails | |
| steps: | |
| - name: Check matrix job status | |
| run: |- | |
| if ! ${{ needs.build.result == 'success' }}; then | |
| echo "One or more matrix jobs failed" | |
| exit 1 | |
| fi |