From 0bc936f749a8d2b0e9dd30f2ba945fed581d4480 Mon Sep 17 00:00:00 2001 From: Digikwal <79085106+digikwal@users.noreply.github.com> Date: Thu, 26 Jun 2025 17:04:53 +0200 Subject: [PATCH] Delete .github/workflows/lint.yml --- .github/workflows/lint.yml | 35 ----------------------------------- 1 file changed, 35 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 b7aafc12..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Lint - -on: - workflow_run: - workflows: - - Pre-commit - types: - - completed - workflow_dispatch: {} - -jobs: - lint: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: "3.10.6" - - - name: Setup Go (for shfmt) - uses: actions/setup-go@v5 - with: - go-version: "^1.14" - - - name: Install pre-commit - run: pip install -U pre-commit - - - name: Lint - run: pre-commit run --color=always --all-files - env: - GO111MODULE: on