From 1480749001063870cfb275187974b913f92a4dc2 Mon Sep 17 00:00:00 2001 From: Hari Rana Date: Wed, 18 Dec 2024 19:32:57 -0500 Subject: [PATCH] ci: Remove mypy.yml --- .github/workflows/mypy.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/mypy.yml diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml deleted file mode 100644 index 133b6ad92a..0000000000 --- a/.github/workflows/mypy.yml +++ /dev/null @@ -1,31 +0,0 @@ -on: - pull_request: - types: [opened, synchronize, reopened] - -name: Mypy -jobs: - mypy-checker: - name: Checker - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Set up Python 3.10 - uses: actions/setup-python@v5 - with: - python-version: "3.10" - - name: Install Ubuntu dependencies - run: | - sudo apt update - sudo apt install -y libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0 - sudo apt install -y libcurl4-openssl-dev libssl-dev - - name: Install Python dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install -r requirements.dev.txt - - name: Run mypy analysis - run: | - mypy --version - mypy bottles