Add Support for 3.14 (and 3.13) #261
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: code-quality | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/* # this is a backup. prefer publishing using a tagged master. | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| codestyle: | |
| name: codestyle | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 5 | |
| matrix: | |
| # https://github.com/actions/python-versions/blob/main/versions-manifest.json | |
| python-version: [ "3.10", "3.14" ] | |
| if: github.ref != 'refs/heads/main' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| allow-prereleases: true | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| python-version: ${{ matrix.python-version }} | |
| - uses: reviewdog/action-setup@v1 | |
| - name: run mypy | |
| run: | | |
| uv sync | |
| uv run mypy --no-warn-no-return dataclasses_json |