Skip to content

Commit

Permalink
GitHub workflow _code_quality.yml : reactivated mypy job
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaasRostock committed Nov 5, 2024
1 parent 1199e23 commit ed62bd2
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,21 @@ jobs:
# - name: Run pyright
# run: uv run pyright

# mypy:
# runs-on: ubuntu-latest
# name: mypy
# steps:
# - uses: actions/checkout@v4
# - name: Install uv
# uses: astral-sh/setup-uv@v2
# with:
# enable-cache: true
# cache-dependency-glob: "uv.lock"
# - name: Set up Python
# uses: actions/setup-python@v5
# with:
# python-version-file: "pyproject.toml"
# - name: Install the project
# run: uv sync --upgrade
# - name: Run mypy
# run: uv run mypy
mypy:
runs-on: ubuntu-latest
name: mypy
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --upgrade
- name: Run mypy
run: uv run mypy

0 comments on commit ed62bd2

Please sign in to comment.