From 2b0a3923c365b70b30e5cbfcef828c69d7d17882 Mon Sep 17 00:00:00 2001 From: Shahriar Heidrich Date: Sat, 21 Sep 2024 09:45:17 +0200 Subject: [PATCH] Add ratcheting type completeness check to CI --- .github/workflows/type-completeness.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/type-completeness.yml diff --git a/.github/workflows/type-completeness.yml b/.github/workflows/type-completeness.yml new file mode 100644 index 00000000..68e010a7 --- /dev/null +++ b/.github/workflows/type-completeness.yml @@ -0,0 +1,14 @@ +name: Type completeness ratchet + +on: [pull_request] + +jobs: + completeness: + name: Type completeness ratchet + runs-on: ubuntu-latest + steps: + - id: completeness + uses: Bibo-Joshi/pyright-type-completeness@1.0.0 + with: + package-name: rope + install-command: "touch rope/py.typed && pip install ."