From 35a1d8448828201a97192bc037f806691107473f Mon Sep 17 00:00:00 2001 From: Jason Rudolph Date: Wed, 24 Jul 2024 20:46:43 -0400 Subject: [PATCH] Add *basic* CI workflow for checking script/setup --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2444843 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: CI + +on: + push + +jobs: + build: + runs-on: macos-14 + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install Homebrew + run: NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + + - name: Verify Homebrew installation + run: brew --version + + - run: script/setup