From 3df691875ab3e96bdcac4d549a0ea24087c874fe Mon Sep 17 00:00:00 2001 From: Digikwal <79085106+digikwal@users.noreply.github.com> Date: Tue, 24 Jun 2025 20:04:19 +0200 Subject: [PATCH] Delete .github/workflows/lint.yml --- .github/workflows/lint.yml | 43 -------------------------------------- 1 file changed, 43 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 6047ccaa..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Lint - -on: - push: - branches: - - main - paths: - - "images/**" - - ".github/workflows/docker-build.yml" - - "apps.json" - pull_request: - branches: - - main - paths: - - "images/**" - - ".github/workflows/docker-build.yml" - - "apps.json" - workflow_dispatch: {} -jobs: - lint: - if: ${{ github.repository == 'digikwal/frappe_docker' }} - 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