Files
brew/.github/workflows/copilot-setup-steps.yml
Mike McQuaid bef9ff8bae github/workflows: add cache-homebrew-prefix workflow keys.
This should avoid the multiple uses of Homebrew/actions/cache-homebrew-prefix in
this repository overwriting the caches of others.
2026-03-10 09:50:05 +00:00

35 lines
903 B
YAML

name: Copilot Setup Steps
on:
workflow_dispatch:
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@main
with:
core: true
cask: true
- run: brew install-bundler-gems --groups=all
# install Homebrew formulae we might need
- uses: Homebrew/actions/cache-homebrew-prefix@main
with:
install: shellcheck shfmt gh gnu-tar subversion curl
workflow-key: copilot-setup-steps
# brew tests doesn't like world writable directories
- run: sudo chmod -R g-w,o-w /home/linuxbrew/.linuxbrew/Homebrew