fix: typo in uv command #140
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
| # SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR) <https://dlr.de> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: Static typechecking (mypy) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| - releases/** | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| permissions: | |
| contents: read | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.10 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install Python dependencies | |
| run: | | |
| uv sync --group ci | |
| - name: Static typechecking with mypy | |
| uses: tsuyoshicho/action-mypy@v5 |