From 2d5f8a499e6be17eef6a1902f35034daaf0a519b Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Tue, 12 Dec 2023 18:48:42 +0100 Subject: [PATCH] lint.yml: Drop as superseded by pre-commit.yml --- .github/workflows/lint.yml | 22 ---------------------- 1 file changed, 22 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 619ed4c..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Lint - -on: - push: - branches: - - master - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - - name: Install dependencies - run: pip install ruff - - name: Lint - run: | - ruff --version - ruff format --check --diff . - ruff check --diff .