From e189bfe509780ae753654b61f14d9912cb39abb4 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Sun, 7 Jun 2026 17:24:07 +0900 Subject: [PATCH] test if go is available on macos 26 --- .github/workflows/test.yaml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ea9c0f95..f80be5c1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,20 +1,17 @@ --- name: test -on: - pull_request: - types: [closed] - pull_request_review: - types: [submitted] +on: pull_request jobs: - test: - if: | - endsWith(github.event.pull_request.user.login, '[bot]') && - ((github.event_name == 'pull_request_review' && github.event.review.state == 'approved') || - github.event_name == 'pull_request') - runs-on: ubuntu-24.04 + test-amd64: + runs-on: macos-26-intel timeout-minutes: 15 - permissions: - pull-requests: write - contents: read + permissions: {} steps: - - uses: suzuki-shunsuke/notify-bot-pr-event-action@pr/1 + - run: go version + + test-arm64: + runs-on: macos-26 + timeout-minutes: 15 + permissions: {} + steps: + - run: go version