From 4aace9f68acd68e9c6c5300f01cddccf250177eb Mon Sep 17 00:00:00 2001 From: wu Date: Sat, 13 May 2023 01:56:54 +0800 Subject: [PATCH] delete ci workflows for GitHub --- .github/workflows/ci.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index c952c3e7..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: CI - -on: [ 'push', 'pull_request' ] - -jobs: - lint: - runs-on: ubuntu-latest - name: lint - strategy: - matrix: - python-version: [ '3.10', '3.11' ] - fail-fast: false - steps: - - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - - name: Install Dependencies - run: pip install ruff==0.0.262 pre-commit==3.2.2 - - - name: ruff check - uses: chartboost/ruff-action@v1 - with: - args: [ '--config', '.ruff.toml' ] - - - name: black formatter - uses: psf/black@stable - with: - options: '--skip-string-normalization --line-length 120' - - - name: pre-commit - uses: pre-commit/action@v3.0.0 - with: - extra_args: --all-files --verbose