From 779ffd7f897273fb2c0503d564a5bd9ee609892e Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Sun, 12 May 2024 10:21:27 -0600 Subject: [PATCH] Remove duplicate Ruff CI workflow It already runs in pre-commit --- .github/workflows/static-analysis.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/static-analysis.yml diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml deleted file mode 100644 index ec51cacb..00000000 --- a/.github/workflows/static-analysis.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Lint and Format with Ruff - -on: push - -jobs: - check-with-ruff: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Install Python - uses: actions/setup-python@v5 - with: - python-version: 3.x - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install ruff - - - name: Ruff linting check - run: | - ruff check --output-format=github . - - - name: Ruff format check - run: | - ruff format --diff .