From a3c0b4add73323f52f256bc70db46fd9afedc0e0 Mon Sep 17 00:00:00 2001 From: koba1t Date: Sun, 15 Sep 2024 01:56:28 +0900 Subject: [PATCH] disable for a step to skip test when that is docs PR --- .github/workflows/go.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a4ae98d3b..2a35978ca 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,7 +28,7 @@ jobs: lint: name: Lint needs: conditional-changes - if: needs.conditional-changes.outputs.doc == 'false' + # if: needs.conditional-changes.outputs.doc == 'false' runs-on: [ubuntu-latest] steps: - name: Check out code into the Go module directory @@ -48,7 +48,7 @@ jobs: test-linux: name: Test Linux needs: conditional-changes - if: needs.conditional-changes.outputs.doc == 'false' + # if: needs.conditional-changes.outputs.doc == 'false' runs-on: [ubuntu-latest] steps: - name: Check out code into the Go module directory @@ -66,7 +66,7 @@ jobs: test-macos: name: Test MacOS needs: conditional-changes - if: needs.conditional-changes.outputs.doc == 'false' + # if: needs.conditional-changes.outputs.doc == 'false' runs-on: [macos-latest] steps: - name: Check out code into the Go module directory @@ -84,7 +84,7 @@ jobs: test-windows: name: Test Windows needs: conditional-changes - if: needs.conditional-changes.outputs.doc == 'false' + # if: needs.conditional-changes.outputs.doc == 'false' runs-on: [windows-latest] steps: - name: Check out code into the Go module directory