From ce14fd0ab73bd5545e6f6a95642e7ba99589ccfb Mon Sep 17 00:00:00 2001 From: himkt Date: Mon, 27 May 2024 00:35:10 +0900 Subject: [PATCH] debug: install homebrew --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..4093055d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: "test" + +on: [push] + +jobs: + check_pr: + + strategy: + matrix: + os: [macos-latest] + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v4 + - run: | + /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + brew doctor