Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/reusable-python-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ jobs:
with:
enable-cache: true
save-cache: ${{ github.ref == 'refs/heads/main' }}
python-version: 3.13
activate-environment: true
# run mypy for static type checking
- name: Run mypy
if: ${{ inputs.enable-mypy }}
Expand All @@ -60,9 +58,8 @@ jobs:
- name: Run ty
if: ${{ inputs.enable-ty }}
run: |
uv sync --no-install-project --all-groups
command -v ty > /dev/null || { echo "ty not found. Add 'ty' to dev dependencies via 'uv add --dev ty'"; exit 1; }
ty check
uv sync --no-install-project
uv run --no-sync ty check
# run check-sdist to ensure the package sdist is correct
- name: Run check-sdist
run: uvx check-sdist --inject-junk
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ This project adheres to [Semantic Versioning], with the exception that minor rel

## [Unreleased]

## Changed

- πŸ‘¨β€πŸ’» Simplify the workflow for running `ty` ([#257]) ([**@burgholzer**])

## [1.17.3] - 2025-11-26

_If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#1173)._
Expand Down Expand Up @@ -195,6 +199,7 @@ _πŸ“š Refer to the [GitHub Release Notes] for previous changelogs._

<!-- PR links -->

[#257]: https://github.com/munich-quantum-toolkit/workflows/pull/257
[#255]: https://github.com/munich-quantum-toolkit/workflows/pull/255
[#254]: https://github.com/munich-quantum-toolkit/workflows/pull/254
[#247]: https://github.com/munich-quantum-toolkit/workflows/pull/247
Expand Down
Loading