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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
single-sourcing the default Python version for multiple NI Python projects.
- [`ni/python-actions/setup-poetry`](setup-poetry): installs Poetry, adds it to the PATH, and caches
it to speed up workflows.
- [`ni/python-actions/analyze-project`](analyze-project): analyzes the code quality of a Python
project using various linters and type checkers.
- [`ni/python-actions/check-project-version`](check-project-version): uses Poetry to get the version
of a Python project and checks that it matches an expected version. Publish workflows can use this
to verify that the release tag matches the version number in `pyproject.toml`.
Expand Down
2 changes: 1 addition & 1 deletion analyze-project/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `ni/python-actions/analyze-project`

The `ni/python-actions/update-project-version` action analyzes the code quality
The `ni/python-actions/analyze-project` action analyzes the code quality
of a Python project using various linters and type checkers including
ni-python-styleguide, mypy (if the 'mypy' package is installed), and pyright
(if the 'pyright' package is installed).
Expand Down
Loading