From bab907267f6838c70a95e10936a14b0073f60442 Mon Sep 17 00:00:00 2001 From: khanhtc1202 Date: Wed, 20 Aug 2025 10:23:38 +0900 Subject: [PATCH] Remove test_tool workflow Signed-off-by: khanhtc1202 --- .github/workflows/test_tool.yaml | 35 -------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/test_tool.yaml diff --git a/.github/workflows/test_tool.yaml b/.github/workflows/test_tool.yaml deleted file mode 100644 index ed02e6528f..0000000000 --- a/.github/workflows/test_tool.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: test_tool - -on: - push: - branches: - - master - paths: - - tool/** - pull_request: - branches: - - master - - 'release-v*' - paths: - - tool/** - -env: - GO_VERSION: 1.24.1 - NODE_VERSION: 18.12.0 - -jobs: - tool: - runs-on: ubuntu-24.04 - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/setup-go@v3 - with: - go-version: ${{ env.GO_VERSION }} - cache: true - - name: Run unit tests for actions-plan-preview - working-directory: tool/actions-plan-preview - run: go test ./... - - - name: Run unit tests for actions-gh-release - working-directory: tool/actions-gh-release - run: go test ./...