10 lines
336 B
YAML
10 lines
336 B
YAML
pipeline:
|
|
pyright:
|
|
image: node
|
|
commands:
|
|
- apt-get update && apt-get --yes install python3-poetry
|
|
- npm install --global pyright
|
|
- poetry install
|
|
- python --version && poetry --version && pyright --version
|
|
- echo "------------- running pyright typecheck -------------"
|
|
- poetry run pyright
|