From ca09f754fe225f99ff0dc73a6958542b6790fabd Mon Sep 17 00:00:00 2001 From: Jan Rundshagen Date: Thu, 27 Mar 2025 14:11:26 +0100 Subject: [PATCH] chore(workflows): comment out lint job in pull-request and release workflows --- .github/workflows/pull-request.yaml | 24 ++++++++++++------------ .github/workflows/release.yaml | 24 ++++++++++++------------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 8c17877..14342a6 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -10,18 +10,18 @@ permissions: contents: read jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: stable - - name: golangci-lint - uses: golangci/golangci-lint-action@v6 - with: - version: v1.60 + # lint: + # name: Lint + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/setup-go@v5 + # with: + # go-version: stable + # - name: golangci-lint + # uses: golangci/golangci-lint-action@v6 + # with: + # version: v1.60 test: name: Test strategy: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fd10677..7fdf5a8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,18 +11,18 @@ permissions: contents: write jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: stable - - name: golangci-lint - uses: golangci/golangci-lint-action@v6 - with: - version: v1.60 + # lint: + # name: Lint + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/setup-go@v5 + # with: + # go-version: stable + # - name: golangci-lint + # uses: golangci/golangci-lint-action@v6 + # with: + # version: v1.60 test: name: Test