From 3a57b7df1d6fa534c0b86452ead54ba69a620508 Mon Sep 17 00:00:00 2001 From: cibere <71997063+cibere@users.noreply.github.com> Date: Sat, 30 Nov 2024 16:21:09 -0800 Subject: [PATCH] remove broken lint workflow --- .github/workflows/lint.yml | 48 -------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 04c1f3f..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: lint - -on: - push: - pull_request: - types: [opened, reopened, synchronize] - -jobs: - check: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: ["3.11"] - - name: check ${{ matrix.python-version }} - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Set up CPython ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - - name: Install dependencies - id: install-deps - run: | - python -m pip install --upgrade pip setuptools wheel black requests - pip install -U -r requirements.txt - - - name: Setup node.js - uses: actions/setup-node@v3 - with: - node-version: "16" - - - name: Run Pyright - uses: jakebailey/pyright-action@v1 - with: - version: "1.1.289" - warnings: false - no-comments: ${{ matrix.python-version != '3.x' }} - - - name: Run black - if: ${{ always() && steps.install-deps.outcome == 'success' }} - run: | - black --check kick examples