From 1960d2012ce871bfc3444d8481c62ea2860db818 Mon Sep 17 00:00:00 2001 From: JackEAllen Date: Fri, 1 Nov 2024 11:19:06 +0000 Subject: [PATCH] Add pyright conda and windows workflows --- .github/workflows/conda.yml | 5 +++++ .github/workflows/windows.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 0bd790bfd8a..d16fe8bbdd5 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -101,6 +101,11 @@ jobs: run: | mypy --ignore-missing-imports mantidimaging + - name: pyright + shell: bash -l {0} + run: | + pyright mantidimaging + - name: pytest timeout-minutes: 10 shell: bash -l {0} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index aa230035af9..5cc9bd9ab1f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -90,6 +90,11 @@ jobs: run: | mypy --ignore-missing-imports mantidimaging + - name: pyright + shell: bash -l {0} + run: | + pyright mantidimaging + - name: pytest timeout-minutes: 10 shell: bash -l {0}