Releases: jakebailey/pyright-action
Releases · jakebailey/pyright-action
v2.3.2
- Support explicit "latest" version (f6f691c)
- Update deps (c1dc810)
- Update node to latest runner version (0b5777b)
- Update deps (66bf589)
- Fix lint fmt (222ed7c)
- Fix compile for now (fa845b7)
- Update deps (d7583ac)
- Update vitest (64b81cd)
- Update deps (a084e58)
- Update deps (cbcd89c)
- Update pnpm/action-setup action to v4 (#118) (fc66f54)
- Update github actions (#111) (54309fd)
v2.3.1
v2.3.0
This version adds support for version: PATH
; this configures pyright-action
to use pyright
from $PATH
, which may be more convenient if you are already installing pyright
via something like the PyPI package. For example:
- run: |
python -m venv .venv
source .venv/bin/activate
pip install -r dev-requirements.txt # includes pyright
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v2
with:
version: PATH
- Add "version: PATH" to pull pyright from $PATH (#107) (32e0647)
- Update github actions (#101) (a9434fd)
- Fix lint (707ce89)
- Update deps (bccc3d9)
- Add missing tests for annotate true/false (8b68a7a)
- Update deps (ab0f126)
- Update cache task (fc12414)
- Fix node version (2ed5847)
- Fix format (1fd21a9)
- Switch to pnpm (12ac4be)
- Revert dist change (f6e3b60)
- Per step (41399fd)
- set defaults (61508a3)
- Pull workflow setup into shared composite action (a3a6fba)
- Update deps (55d1f64)
v2.2.1
- Stop warning about python-version and python-platform in 1.1.352+ (c4eaa8c)
v2.2.0
This adds a new annotate
input, replacing no-comment
. Examples:
# Disable annotations.
with:
annotate: none
# - or -
annotate: false
# Annotate only errors, not warnings.
with:
annotate: errors
# Annotate everything (the default)
with:
annotate: all
# - or -
annotate: true
no-comment
still works, and overrides annotate
if set to true
.
v2.1.2
- Handle case where --project is not json (f84ea8a)
v2.1.1
v2.1.0
v2.0.2
v2.0.1
This is a major version release. This bumps the minimum node version for the action to node20, which has been out for a while.