From 8846acc8cf5d70ca6b9a15c84ee92ef35c8c26fb Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 27 Oct 2020 14:09:53 +0100 Subject: [PATCH] Fix macos brew install packages. Directly use brew instead of `get-package` action. `get-package` seems to be broken with some invalid git command. --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd324b2..5aa3242 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,9 +126,8 @@ jobs: with: python-version: '3.6' - name: Install packages - uses: mstksg/get-package@v1 - with: - brew: pkg-config ninja + run: + brew install pkg-config ninja - name: Install python modules run: | pip3 install meson==0.52.1 pytest requests distro