From: Bob Halley Date: Fri, 18 Oct 2024 20:03:22 +0000 (-0700) Subject: try to add pyright to the CI X-Git-Tag: v2.8.0rc1~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a491abfc08f8b133a5358a8e144c8e595f684b8c;p=thirdparty%2Fdnspython.git try to add pyright to the CI --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 425ed05e..837a23b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,6 @@ on: push: branches: - main - - 2.6 - 2.7 paths: - '**.py' @@ -52,10 +51,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install cryptography trio idna httpx h2 aioquic mypy pytest ruff + python -m pip install cryptography trio idna httpx h2 aioquic mypy pytest ruff pyright - name: Typecheck run: | python -m mypy --install-types --non-interactive --disallow-incomplete-defs dns + pyright dns - name: Lint run: | ruff check dns