From fc0c23eb6ec5c0fd64ef3afb8cccea2ab0534ea1 Mon Sep 17 00:00:00 2001 From: Bradon Kelley <15696431+bckelley@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:26:36 -0500 Subject: [PATCH] Delete .github/workflows/lint.yml --- .github/workflows/lint.yml | 31 ------------------------------- 1 file changed, 31 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 ffe789e..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Lint - -on: - pull_request: - branches: - - main - -jobs: - - pre-commit: - name: pre-commit - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-python@v4 - with: - python-version: 3.11 - - - name: Cache pre-commit - uses: actions/cache@v3 - with: - path: ~/.cache/pre-commit - key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} - - - name: Install pre-commit - run: pip3 install pre-commit - - - name: Run pre-commit - run: pre-commit run --all-files --show-diff-on-failure --color always