From 6e66fd202ace0817344abb4f36488e9a80f23464 Mon Sep 17 00:00:00 2001 From: no-problem-kyoichi Date: Sat, 27 Jun 2026 12:15:25 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20tests.yml=20=E3=82=92=20CI=20=E8=87=AA?= =?UTF-8?q?=E5=8B=95=E5=AE=9F=E8=A1=8C=E3=81=8B=E3=82=89=E6=89=8B=E5=8B=95?= =?UTF-8?q?(dispatch)=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macOS ランナーでの swift test を PR 毎に自動実行するのを廃止(GHA コスト削減)。 テストは PR 作成前にローカルで回す運用に。必要時は workflow_dispatch で手動実行。 各ジョブに timeout-minutes も付与(暴走保険)。 Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/tests.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 482b3c9..ae7309c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,10 +1,6 @@ name: Tests on: - pull_request: - branches: - - main - - 'release/**' workflow_dispatch: concurrency: @@ -15,6 +11,7 @@ jobs: test-macos: name: macOS (Swift 6.2) runs-on: macos-15 + timeout-minutes: 20 steps: - name: Checkout uses: actions/checkout@v4