Skip to content

Commit

Permalink
fix homebrew missing in CI (#264)
Browse files Browse the repository at this point in the history
Homebrew was removed from Github Actions Ubuntu images in actions/runner-images#6283 so we add a step to install Homebrew but only if running on Ubuntu.
  • Loading branch information
PatrickF1 authored Oct 4, 2022
1 parent 309975c commit 25752b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
with:
plugins: jorgebucaran/fishtape ilancosman/clownfish $GITHUB_WORKSPACE

- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
# Homebrew is only missing from ubuntu images per https://github.com/actions/runner-images/issues/6283
if: matrix.os == 'ubuntu-latest'

- name: Install fzf and fd
run: brew install fzf fd

Expand Down

0 comments on commit 25752b6

Please sign in to comment.