From f62acab7158c5cd74f6b741fdc5ff097c5715809 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 23 Feb 2022 18:07:06 +0530 Subject: [PATCH] Install fish on macOS CI --- .github/workflows/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index fc671f3fe..c30fbe4aa 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -31,7 +31,7 @@ def install_deps(): sys.stdout.flush() if is_macos: items = (x.split()[1].strip('"') for x in open('Brewfile').readlines() if x.strip().startswith('brew ')) - run('brew', 'install', *items) + run('brew', 'install', 'fish', *items) else: run('sudo apt-get update') run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates'