chore: tests.yml を CI 自動実行から手動(dispatch)に(macOS コスト削減)#1
Merged
Conversation
macOS ランナーでの swift test を PR 毎に自動実行するのを廃止(GHA コスト削減)。 テストは PR 作成前にローカルで回す運用に。必要時は workflow_dispatch で手動実行。 各ジョブに timeout-minutes も付与(暴走保険)。 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
目的
GitHub Actions コスト削減(Tier 2)。macOS ランナー(Linux の約10倍課金)で swift test を CI 自動実行していたのを廃止する。
方針
テストは CI で回さず、PR を作る前にローカルで回す運用に切り替える。これに伴い macOS でテストするワークフローを自動トリガーから手動(
workflow_dispatch)に変更。変更
tests.ymlのpull_requestトリガーを削除しworkflow_dispatchのみにtimeout-minutesを付与(6時間ハングの暴走保険)影響
swift testする前提)🤖 Generated with Claude Code