https://github.com/pr-annotators/pyright-pr-annotator
Annotate pull requests with pyright errors detected during CI
https://github.com/pr-annotators/pyright-pr-annotator
annotations code-review github-actions pull-requests pyright python
Last synced: about 1 month ago
JSON representation
Annotate pull requests with pyright errors detected during CI
- Host: GitHub
- URL: https://github.com/pr-annotators/pyright-pr-annotator
- Owner: pr-annotators
- License: mit
- Created: 2022-03-31T19:44:44.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-31T19:51:52.000Z (about 4 years ago)
- Last Synced: 2025-03-04T21:42:12.415Z (about 1 year ago)
- Topics: annotations, code-review, github-actions, pull-requests, pyright, python
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pyright PR Annotator
## Usage
Annotate pull requests with pyright errors detected during CI.
Note: This doesn't install or run pyright, it just sets up the PR annotations.
### Example workflow
```yaml
name: My Workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Add pyright annotator
uses: pr-annotators/pyright-pr-annotator@master
- name: Run pyright
uses: jakebailey/pyright-action@v1
```