From fb7c3b97d9fbbae17d5f64bae87b6c9d409ddedc Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 19 Mar 2026 09:56:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20.github/workflows/ci.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yaml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100755 index 8219c61..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: CI -on: push -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.10" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install ruff==0.6.8 - - name: Run Ruff - run: ruff check --output-format=github . - - name: Check imports - run: ruff check --select I --output-format=github . - - name: Check formatting - run: ruff format --check .