From 058b3824d3a72e90768a964cd9250a0348185237 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 29 Aug 2023 11:40:19 +0200 Subject: [PATCH] Switch to node image for pyright --- .woodpecker/static_analysis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.woodpecker/static_analysis.yml b/.woodpecker/static_analysis.yml index 3506c5c..9b07649 100644 --- a/.woodpecker/static_analysis.yml +++ b/.woodpecker/static_analysis.yml @@ -1,8 +1,9 @@ pipeline: pyright: - image: ghcr.io/withlogicco/poetry:1.5.1 + image: node commands: - - pip install pyright + - apt-get update && apt-get install python3-poetry + - npm install --global pyright - poetry install - python --version && poetry --version && pyright --version - echo "------------- running pyright typecheck -------------"