Skip to content

πŸ—πŸš§ Install Homebrew in CI workflow #3

πŸ—πŸš§ Install Homebrew in CI workflow

πŸ—πŸš§ Install Homebrew in CI workflow #3

Workflow file for this run

name: CI
on:
push
jobs:
build:
runs-on: macos-14
steps:
- name: Checkout repository
uses: actions/checkout@v3
- 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: echo "hello"