Marty Oehme
b564ab4792
Added static analysis (lint, type checking) to be done on each push, and testing to be done on each master branch commit.
9 lines
291 B
YAML
9 lines
291 B
YAML
pipeline:
|
|
pyright:
|
|
image: nikolaik/python-nodejs
|
|
commands:
|
|
- npm install --global pyright
|
|
- poetry install
|
|
- python --version && poetry --version && pyright --version
|
|
- echo "------------- running pyright typecheck -------------"
|
|
- poetry run pyright
|